Home
last modified time | relevance | path

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

/external/bison/lib/
Dobstack.c188 h->next_free = h->object_base = __PTR_ALIGN ((char *) chunk, chunk->contents, in _obstack_begin()
236 h->next_free = h->object_base = __PTR_ALIGN ((char *) chunk, chunk->contents, in _obstack_begin_1()
259 register long obj_size = h->next_free - h->object_base; in _obstack_newchunk()
262 char *object_base; in _obstack_newchunk() local
278 object_base = in _obstack_newchunk()
288 ((COPYING_UNIT *)object_base)[i] in _obstack_newchunk()
289 = ((COPYING_UNIT *)h->object_base)[i]; in _obstack_newchunk()
299 object_base[i] = h->object_base[i]; in _obstack_newchunk()
305 && (h->object_base in _obstack_newchunk()
313 h->object_base = object_base; in _obstack_newchunk()
[all …]
Dobstack.h154 char *object_base; /* address of object we are building */ member
205 #define obstack_base(h) ((void *) (h)->object_base)
268 (unsigned) (__o->next_free - __o->object_base); })
384 void *__value = (void *) __o1->object_base; \
388 = __PTR_ALIGN (__o1->object_base, __o1->next_free, \
393 __o1->object_base = __o1->next_free; \
401 __o->next_free = __o->object_base = (char *)__obj; \
407 (unsigned) ((h)->next_free - (h)->object_base)
481 ( ((h)->next_free == (h)->object_base \
484 (h)->temp.tempptr = (h)->object_base, \
[all …]