Lines Matching defs:new_chunk
246 register struct _obstack_chunk *new_chunk;
259 new_chunk = CALL_CHUNKFUN (h, new_size);
260 if (!new_chunk)
262 h->chunk = new_chunk;
263 new_chunk->prev = old_chunk;
264 new_chunk->limit = h->chunk_limit = (char *) new_chunk + new_size;
268 __PTR_ALIGN ((char *) new_chunk, new_chunk->contents, h->alignment_mask);
298 new_chunk->prev = old_chunk->prev;