Searched refs:boffset (Results 1 - 13 of 13) sorted by relevance

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libobjc/objc/
H A Dsarray.h93 unsigned int boffset : SIZET_BITS/4; member in struct:soffset
97 unsigned long boffset : (SIZET_BITS - 2) - BUCKET_BITS;
101 unsigned int boffset : SIZET_BITS/2;
168 + (x.off.boffset*BUCKET_SIZE)
171 return x.off.eoffset + (x.off.boffset*BUCKET_SIZE);
181 x.off.boffset = (offset/BUCKET_SIZE)%INDEX_SIZE;
184 x.off.boffset = offset/BUCKET_SIZE;
215 buckets[x.off.boffset]->
218 return array->buckets[x.off.boffset]->elems[x.off.eoffset];
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libobjc/objc/
H A Dsarray.h94 unsigned int boffset : SIZET_BITS/4; member in struct:soffset
98 unsigned long boffset : (SIZET_BITS - 2) - BUCKET_BITS;
102 unsigned int boffset : SIZET_BITS/2;
169 + (x.off.boffset*BUCKET_SIZE)
172 return x.off.eoffset + (x.off.boffset*BUCKET_SIZE);
182 x.off.boffset = (offset/BUCKET_SIZE)%INDEX_SIZE;
185 x.off.boffset = offset/BUCKET_SIZE;
216 buckets[x.off.boffset]->
219 return array->buckets[x.off.boffset]->elems[x.off.eoffset];
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A D20060202-1.c19 unsigned int boffset:(sizeof (size_t) * 8) / 2; member in struct:soffset
36 return x.off.eoffset + (x.off.boffset * (1 << 5));
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libobjc/
H A Dsarray.c103 size_t boffset; local
111 boffset = xx.off.boffset;
116 boffset = (index/BUCKET_SIZE)%INDEX_SIZE;
119 boffset = index/BUCKET_SIZE;
128 the_bucket = &((*the_index)->buckets[boffset]);
130 the_bucket = &(array->buckets[boffset]);
147 the_bucket = &((*the_index)->buckets[boffset]);
158 the_bucket = &((*the_index)->buckets[boffset]);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libobjc/
H A Dsarray.c104 size_t boffset; local
112 boffset = xx.off.boffset;
117 boffset = (index/BUCKET_SIZE)%INDEX_SIZE;
120 boffset = index/BUCKET_SIZE;
129 the_bucket = &((*the_index)->buckets[boffset]);
131 the_bucket = &(array->buckets[boffset]);
148 the_bucket = &((*the_index)->buckets[boffset]);
159 the_bucket = &((*the_index)->buckets[boffset]);
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/
H A Dcp-valprint.c486 int boffset = 0; local
514 boffset = baseclass_offset (type, i, valaddr, offset, address, val);
530 if ((boffset + offset) < 0
531 || (boffset + offset) >= TYPE_LENGTH (real_type))
537 if (target_read_memory (address + boffset, buf,
542 address + boffset);
544 boffset = 0;
585 thisoffset + boffset,
594 thisoffset + boffset,
H A Djv-valprint.c227 unsigned long boffset; local
237 boffset_val = value_struct_elt (&val, NULL, "boffset", NULL, NULL);
238 boffset = value_as_address (boffset_val);
246 val_print_string (char_type, NULL, data + boffset, count, stream,
285 int boffset; local
296 boffset = 0;
312 offset + boffset, address,
H A Dgnu-v2-abi.c389 int boffset =
393 if (boffset)
394 return boffset;
388 int boffset = local
H A Dp-valprint.c906 int boffset = 0;
933 boffset = baseclass_offset (type, i, valaddr, offset, address, val);
947 if (boffset < 0 || boffset >= TYPE_LENGTH (type))
953 if (target_read_memory (address + boffset, buf,
956 address = address + boffset;
958 boffset = 0;
982 thisoffset + boffset, address,
904 int boffset = 0; local
H A Djv-lang.c425 int boffset; local
450 boffset = value_as_long (value_struct_elt (&temp, NULL, "boffset",
465 SET_FIELD_PHYSADDR (TYPE_FIELD (type, i), boffset); local
467 TYPE_FIELD_BITPOS (type, i) = 8 * boffset;
H A Dvalops.c2093 int boffset;
2096 boffset = baseclass_offset (type, i,
2106 boffset += value_embedded_offset (arg1) + offset;
2107 if (boffset < 0
2108 || boffset >= TYPE_LENGTH (value_enclosing_type (arg1)))
2113 base_addr = value_address (arg1) + boffset;
2125 set_value_embedded_offset (v2, boffset);
2400 struct type **basetype, int *boffset)
2421 *boffset = offset;
2449 basetype, boffset);
2091 int boffset; local
2396 find_method_list(struct value **argp, const char *method, int offset, struct type *type, int *num_fns, struct type **basetype, int *boffset) argument
2465 value_find_oload_method_list(struct value **argp, const char *method, int offset, int *num_fns, struct type **basetype, int *boffset) argument
2558 int boffset; local
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/wscons/
H A Dwsdisplay_vcons.c409 int i, j, offset, boffset = 0; local
440 vd->chars[boffset] = charptr[offset];
441 vd->attrs[boffset] = attrptr[offset];
444 boffset++;
464 int i, j, offset, boffset = 0; local
492 if ((vd->chars[boffset] != charptr[offset]) ||
493 (vd->attrs[boffset] != attrptr[offset])) {
496 vd->chars[boffset] = charptr[offset];
497 vd->attrs[boffset] = attrptr[offset];
500 boffset
[all...]
/netbsd-6-1-5-RELEASE/sbin/newfs_ext2fs/
H A Dmke2fs.c485 uint boffset; local
487 boffset = cgbase(&sblock, cylno);
492 boffset += NBLOCK_SUPERBLOCK + sblock.e2fs_ngdb;
496 boffset += sblock.e2fs.e2fs_reserved_ngdb;
498 gd[cylno].ext2bgd_b_bitmap = boffset;
499 boffset += NBLOCK_BLOCK_BITMAP;
500 gd[cylno].ext2bgd_i_bitmap = boffset;
501 boffset += NBLOCK_INODE_BITMAP;
502 gd[cylno].ext2bgd_i_tables = boffset;

Completed in 197 milliseconds