Searched refs:object_base (Results 1 – 10 of 10) sorted by relevance
| /freebsd-12.1/contrib/gcclibs/libiberty/ |
| H A D | obstack.c | 175 h->next_free = h->object_base = chunk->contents; in _obstack_begin() 221 h->next_free = h->object_base = chunk->contents; in _obstack_begin_1() 243 register long obj_size = h->next_free - h->object_base; in _obstack_newchunk() 268 = ((COPYING_UNIT *)h->object_base)[i]; in _obstack_newchunk() 278 new_chunk->contents[i] = h->object_base[i]; in _obstack_newchunk() 283 if (h->object_base == old_chunk->contents && ! h->maybe_empty_object) in _obstack_newchunk() 289 h->object_base = new_chunk->contents; in _obstack_newchunk() 290 h->next_free = h->object_base + obj_size; in _obstack_newchunk() 350 h->object_base = h->next_free = (char *) (obj); in _obstack_free() 382 h->object_base = h->next_free = (char *) (obj); in obstack_free()
|
| /freebsd-12.1/contrib/binutils/libiberty/ |
| H A D | obstack.c | 175 h->next_free = h->object_base = chunk->contents; in _obstack_begin() 221 h->next_free = h->object_base = chunk->contents; in _obstack_begin_1() 243 register long obj_size = h->next_free - h->object_base; in _obstack_newchunk() 268 = ((COPYING_UNIT *)h->object_base)[i]; in _obstack_newchunk() 278 new_chunk->contents[i] = h->object_base[i]; in _obstack_newchunk() 283 if (h->object_base == old_chunk->contents && ! h->maybe_empty_object) in _obstack_newchunk() 289 h->object_base = new_chunk->contents; in _obstack_newchunk() 290 h->next_free = h->object_base + obj_size; in _obstack_newchunk() 350 h->object_base = h->next_free = (char *) (obj); in _obstack_free() 382 h->object_base = h->next_free = (char *) (obj); in obstack_free()
|
| /freebsd-12.1/gnu/usr.bin/grep/ |
| H A D | obstack.c | 198 h->next_free = h->object_base = chunk->contents; 258 h->next_free = h->object_base = chunk->contents; 282 register long obj_size = h->next_free - h->object_base; 307 = ((COPYING_UNIT *)h->object_base)[i]; 317 new_chunk->contents[i] = h->object_base[i]; 322 if (h->object_base == old_chunk->contents && ! h->maybe_empty_object) 328 h->object_base = new_chunk->contents; 329 h->next_free = h->object_base + obj_size; 395 h->object_base = h->next_free = (char *) (obj); 429 h->object_base = h->next_free = (char *) (obj);
|
| H A D | obstack.h | 273 #define obstack_base(h) ((h)->object_base) 362 (unsigned) (__o->next_free - __o->object_base); }) 467 value = (void *) __o1->object_base; \ 476 __o1->object_base = __o1->next_free; \ 484 __o->next_free = __o->object_base = (char *)__obj; \ 490 (unsigned) ((h)->next_free - (h)->object_base) 558 ( ((h)->next_free == (h)->object_base \ 561 (h)->temp = __PTR_TO_INT ((h)->object_base), \ 568 (h)->object_base = (h)->next_free, \ 575 ? (int) ((h)->next_free = (h)->object_base \ [all …]
|
| /freebsd-12.1/contrib/binutils/include/ |
| H A D | obstack.h | 168 char *object_base; /* address of object we are building */ member 250 #define obstack_base(h) ((h)->object_base) 311 (unsigned) (__o->next_free - __o->object_base); }) 425 value = (void *) __o1->object_base; \ 434 __o1->object_base = __o1->next_free; \ 442 __o->next_free = __o->object_base = (char *) __obj; \ 448 (unsigned) ((h)->next_free - (h)->object_base) 519 ( ((h)->next_free == (h)->object_base \ 522 (h)->temp = __PTR_TO_INT ((h)->object_base), \ 529 (h)->object_base = (h)->next_free, \ [all …]
|
| /freebsd-12.1/contrib/gcclibs/include/ |
| H A D | obstack.h | 168 char *object_base; /* address of object we are building */ member 250 #define obstack_base(h) ((h)->object_base) 311 (unsigned) (__o->next_free - __o->object_base); }) 425 value = (void *) __o1->object_base; \ 434 __o1->object_base = __o1->next_free; \ 442 __o->next_free = __o->object_base = (char *) __obj; \ 448 (unsigned) ((h)->next_free - (h)->object_base) 519 ( ((h)->next_free == (h)->object_base \ 522 (h)->temp = __PTR_TO_INT ((h)->object_base), \ 529 (h)->object_base = (h)->next_free, \ [all …]
|
| /freebsd-12.1/contrib/gdb/include/ |
| H A D | obstack.h | 279 #define obstack_base(h) ((h)->object_base) 368 (unsigned) (__o->next_free - __o->object_base); }) 482 value = (void *) __o1->object_base; \ 491 __o1->object_base = __o1->next_free; \ 499 __o->next_free = __o->object_base = __obj; \ 505 (unsigned) ((h)->next_free - (h)->object_base) 576 ( ((h)->next_free == (h)->object_base \ 579 (h)->temp = __PTR_TO_INT ((h)->object_base), \ 586 (h)->object_base = (h)->next_free, \ 593 ? (int) ((h)->next_free = (h)->object_base \ [all …]
|
| /freebsd-12.1/sys/dev/ixl/ |
| H A D | i40e_lan_hmc.c | 1230 u8 **object_base, in i40e_hmc_get_object_va() argument 1248 if (NULL == object_base) { in i40e_hmc_get_object_va() 1279 *object_base = (u8 *)pd_entry->bp.addr.va + obj_offset_in_pd; in i40e_hmc_get_object_va() 1283 *object_base = (u8 *)sd_entry->u.bp.addr.va + obj_offset_in_sd; in i40e_hmc_get_object_va()
|
| /freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_platform_limits_posix.h | 876 char *object_base; member
|
| H A D | sanitizer_platform_limits_posix.cc | 1254 CHECK_SIZE_AND_OFFSET(obstack, object_base);
|