Searched refs:block (Results 1 - 25 of 782) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A D20030703-1.c5 void MBMotionEstimation(int *act_block, int block) argument
7 SAD_Block(act_block + ( (8 * (block == 1 || block == 3))
8 + (8 * (block == 2 || block == 3))));
H A D20010605-1.c8 } block; typedef in typeref:struct:__anon5206
9 block retframe_block()
11 return *(block*)0;
H A D20030604-1.c9 unsigned int butterfly, block, offset; local
12 for (block = 0; block < 512; block += 512) {
14 offset = butterfly + block;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compile/
H A D20030703-1.c5 void MBMotionEstimation(int *act_block, int block) argument
7 SAD_Block(act_block + ( (8 * (block == 1 || block == 3))
8 + (8 * (block == 2 || block == 3))));
H A D20010605-1.c8 } block; typedef in typeref:struct:__anon3572
9 block retframe_block()
11 return *(block*)0;
H A D20030604-1.c9 unsigned int butterfly, block, offset; local
12 for (block = 0; block < 512; block += 512) {
14 offset = butterfly + block;
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/mantools/
H A Dpostconffix30 # Pass through comments and blank linkes before a text block.
36 # Gobble up the next text block.
37 $block = "";
40 $block .= $_;
43 # Don't touch a text block starting with < in column zero.
44 if ($block =~ /^</) {
45 print "$block\n";
48 # Meta block.
49 elsif ($block =~ /^%/) {
50 print "$block\
[all...]
H A Dpostconf2html36 # Skip blank lines before text block.
39 # Gobble up the next text block.
40 $block = "";
44 $block .= $_;
48 { $comment = 0; $block =~ s/<!--.*-->//sg; }
52 if ($block =~ /^\s/) {
53 $block =~ s/^\s+//s;
54 next if ($block eq "");
57 # Don't touch a text block starting with < in column zero.
58 if ($block
[all...]
H A Dpostconf2man24 # Skip blank lines before text block.
27 # Gobble up the next text block.
28 $block = "";
31 $block .= $_;
36 #$block =~ s/\n\./\n\\\&./g;
37 $block =~ s/\n\./\n\134\&./g;
38 if ($block =~ /<H2>/) {
39 $block =~ s/<H2><a[^>]+>([^<]+)<\/a><\/H2>/\n.SH \1\n/g;
40 $block =~ tr/a-z/A-Z/;
42 $block
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/contrib/reghunt/examples/
H A D29478.c1 struct block;
4 remove_out_of_scope_renamings (struct block *current_block)
9 ada_lookup_symbol_list (const struct block *block0)
11 return remove_out_of_scope_renamings ((struct block *) block0);
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/hppa/parse/
H A Dblock2.s3 .block -1
H A Dblock1.s5 .block
7 .block 0x3fffffff
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/
H A Dblock.h35 are represented by `struct block' objects.
38 Each block represents one name scope.
39 Each lexical context has its own block.
48 Each block records a range of core addresses for the code that
49 is in the scope of the block. The STATIC_BLOCK and GLOBAL_BLOCK
60 struct block struct
63 /* Addresses in the executable code that are in this block. */
68 /* The symbol that names this block, if the block is the body of a
73 /* The `struct block' fo
125 struct block *block[1]; member in struct:blockvector
[all...]
H A Dblock.c22 #include "block.h"
29 /* This is used by struct block to store namespace-related info for
39 static void block_initialize_namespace (struct block *block,
42 /* Return Nonzero if block a is lexically nested within block b,
47 contained_in (const struct block *a, const struct block *b)
56 /* If A is a function block, then A cannot be contained in B,
69 lexical block, describe
206 block_scope(const struct block *block) argument
223 block_set_scope(struct block *block, const char *scope, struct obstack *obstack) argument
235 block_using(const struct block *block) argument
248 block_set_using(struct block *block, struct using_direct *using, struct obstack *obstack) argument
261 block_initialize_namespace(struct block *block, struct obstack *obstack) argument
276 block_static_block(const struct block *block) argument
291 block_global_block(const struct block *block) argument
[all...]
H A Dstack.h33 void iterate_over_block_arg_vars (struct block *block,
37 void iterate_over_block_local_vars (struct block *block,
/netbsd-6-1-5-RELEASE/external/public-domain/xz/dist/src/liblzma/common/
H A Dblock_util.c18 lzma_block_compressed_size(lzma_block *block, lzma_vli unpadded_size)
21 if (lzma_block_unpadded_size(block) == 0)
24 const uint32_t container_size = block->header_size
25 + lzma_check_size(block->check);
35 if (block->compressed_size != LZMA_VLI_UNKNOWN
36 && block->compressed_size != compressed_size)
39 block->compressed_size = compressed_size;
46 lzma_block_unpadded_size(const lzma_block *block)
54 if (block == NULL || block
[all...]
H A Dblock_header_encoder.c18 lzma_block_header_size(lzma_block *block)
20 if (block->version != 0)
27 if (block->compressed_size != LZMA_VLI_UNKNOWN) {
28 const uint32_t add = lzma_vli_size(block->compressed_size);
29 if (add == 0 || block->compressed_size == 0)
36 if (block->uncompressed_size != LZMA_VLI_UNKNOWN) {
37 const uint32_t add = lzma_vli_size(block->uncompressed_size);
45 if (block->filters == NULL || block->filters[0].id == LZMA_VLI_UNKNOWN)
48 for (size_t i = 0; block
[all...]
H A Dblock_header_decoder.c18 free_properties(lzma_block *block, lzma_allocator *allocator) argument
24 lzma_free(block->filters[i].options, allocator);
25 block->filters[i].id = LZMA_VLI_UNKNOWN;
26 block->filters[i].options = NULL;
34 lzma_block_header_decode(lzma_block *block,
45 block->filters[i].id = LZMA_VLI_UNKNOWN;
46 block->filters[i].options = NULL;
50 block->version = 0;
54 if (lzma_block_header_size_decode(in[0]) != block->header_size
55 || (unsigned int)(block
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Dpr24683.c3 int *block; variable
10 block = (int *) &data[j];
H A Dgnu89-init-3.c8 int block[]; member in struct:smrdd_memory_blocks_s
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/
H A Dpr24683.c3 int *block; variable
10 block = (int *) &data[j];
H A Dgnu89-init-3.c8 int block[]; member in struct:smrdd_memory_blocks_s
/netbsd-6-1-5-RELEASE/sys/dev/pci/hdaudio/
H A Deldreg.h53 #define ELD_VER(block) (((block)->header.flags >> 3) & 0x1f)
56 #define ELD_CEA_EDID_VER(block) (((block)->flags[0] >> 5) & 0x07)
61 #define ELD_MNL(block) (((block)->flags[0] >> 0) & 0x1f)
62 #define ELD_SAD_COUNT(block) (((block)->flags[1] >> 4) & 0x0f)
63 #define ELD_CONN_TYPE(block) (((block)
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/libpcap/dist/
H A Dgencode.h196 struct slist *jt; /*only for relative jump in block*/
197 struct slist *jf; /*only for relative jump in block*/
229 struct block *succ;
230 struct block *pred;
234 struct block { struct
246 struct block *head;
247 struct block *link; /* link field used by optimizer */
259 struct block *b; /* protocol checks */
277 void gen_and(struct block *, struct block *);
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/python/
H A Dpy-block.c21 #include "block.h"
30 /* The GDB block structure that represents a frame's code block. */
31 struct block *block; member in struct:blpy_block_object
33 between a block and an object file. When a block is created also
37 block invalidation if the source object file has been freed. */
44 /* The block dictionary of symbols. */
50 /* Pointer back to the original source block objec
88 struct block *block = NULL; local
108 struct block *block = NULL; local
118 struct block *block = NULL; local
129 struct block *block = NULL; local
143 struct block *block = NULL; local
159 block_object *block = (block_object *) obj; local
179 set_block(block_object *obj, struct block *block, struct objfile *objfile) argument
199 block_to_block_object(struct block *block, struct objfile *objfile) argument
272 struct block *block; local
302 struct block *block; local
[all...]

Completed in 147 milliseconds

1234567891011>>