Lines Matching refs:chunk
154 struct _obstack_chunk *chunk; /* address of current struct obstack_chunk */ member
287 (__o->chunk->prev == 0 \
288 && __o->next_free == __PTR_ALIGN ((char *) __o->chunk, \
289 __o->chunk->contents, \
391 if (__o1->next_free - (char *)__o1->chunk \
392 > __o1->chunk_limit - (char *)__o1->chunk) \
401 if (__obj > (void *)__o->chunk && __obj < (void *)__o->chunk_limit) \
414 ((h)->chunk->prev == 0 \
415 && (h)->next_free == __PTR_ALIGN ((char *) (h)->chunk, \
416 (h)->chunk->contents, \
489 (((h)->next_free - (char *) (h)->chunk \
490 > (h)->chunk_limit - (char *) (h)->chunk) \
496 ( (h)->temp.tempint = (char *) (obj) - (char *) (h)->chunk, \
498 && (h)->temp.tempint < (h)->chunk_limit - (char *) (h)->chunk)) \
500 = (h)->temp.tempint + (char *) (h)->chunk) \
501 : (((obstack_free) ((h), (h)->temp.tempint + (char *) (h)->chunk), 0), 0)))