Home
last modified time | relevance | path

Searched refs:object_base (Results 1 – 2 of 2) sorted by relevance

/haiku/src/system/libroot/posix/glibc/extensions/
H A Dobstack.c204 h->next_free = h->object_base = chunk->contents;
264 h->next_free = h->object_base = chunk->contents;
288 register long obj_size = h->next_free - h->object_base;
291 char *object_base; local
307 object_base =
318 ((COPYING_UNIT *)object_base)[i]
319 = ((COPYING_UNIT *)h->object_base)[i];
329 object_base[i] = h->object_base[i];
334 if (h->object_base == old_chunk->contents && ! h->maybe_empty_object)
340 h->object_base = object_base;
[all …]
H A Dobstack.h168 char *object_base; /* address of object we are building */ member
276 #define obstack_base(h) ((h)->object_base)
372 (unsigned) (__o->next_free - __o->object_base); })
480 value = (void *) __o1->object_base; \
489 __o1->object_base = __o1->next_free; \
497 __o->next_free = __o->object_base = (char *)__obj; \
503 (unsigned) ((h)->next_free - (h)->object_base)
574 ( ((h)->next_free == (h)->object_base \
577 (h)->temp = __PTR_TO_INT ((h)->object_base), \
584 (h)->object_base = (h)->next_free, \
[all …]