Lines Matching refs:chunk
156 struct _obstack_chunk *chunk; /* address of current struct obstack_chunk */ member
291 (__o->chunk->prev == 0 \
292 && __o->next_free == __PTR_ALIGN ((char *) __o->chunk, \
293 __o->chunk->contents, \
397 if (__o1->next_free - (char *) __o1->chunk \
398 > __o1->chunk_limit - (char *) __o1->chunk) \
407 if (__obj > (void *) __o->chunk && __obj < (void *) __o->chunk_limit) \
420 ((h)->chunk->prev == 0 \
421 && (h)->next_free == __PTR_ALIGN ((char *) (h)->chunk, \
422 (h)->chunk->contents, \
495 (((h)->next_free - (char *) (h)->chunk \
496 > (h)->chunk_limit - (char *) (h)->chunk) \
502 ((h)->temp.tempint = (char *) (obj) - (char *) (h)->chunk, \
504 && (h)->temp.tempint < (h)->chunk_limit - (char *) (h)->chunk)) \
506 = (h)->temp.tempint + (char *) (h)->chunk) \
507 : (__obstack_free) (h, (h)->temp.tempint + (char *) (h)->chunk)))