Lines Matching refs:next_free
154 char *next_free; /* where to add next char to current object */ member
217 #define obstack_next_free(h) ((h)->next_free)
250 #define obstack_1grow_fast(h,achar) (*((h)->next_free)++ = (achar))
252 #define obstack_blank_fast(h,n) ((h)->next_free += (n))
272 (unsigned) (__o->next_free - __o->object_base); })
277 (unsigned) (__o->chunk_limit - __o->next_free); })
283 if (__o->chunk_limit - __o->next_free < __len) \
291 && __o->next_free == __PTR_ALIGN ((char *) __o->chunk, \
299 if (__o->next_free + __len > __o->chunk_limit) \
301 memcpy (__o->next_free, where, __len); \
302 __o->next_free += __len; \
309 if (__o->next_free + __len + 1 > __o->chunk_limit) \
311 memcpy (__o->next_free, where, __len); \
312 __o->next_free += __len; \
313 *(__o->next_free)++ = 0; \
319 if (__o->next_free + 1 > __o->chunk_limit) \
331 if (__o->next_free + sizeof (void *) > __o->chunk_limit) \
338 if (__o->next_free + sizeof (int) > __o->chunk_limit) \
345 *(const void **) __o1->next_free = (aptr); \
346 __o1->next_free += sizeof (const void *); \
352 *(int *) __o1->next_free = (aint); \
353 __o1->next_free += sizeof (int); \
360 if (__o->chunk_limit - __o->next_free < __len) \
389 if (__o1->next_free == __value) \
391 __o1->next_free \
392 = __PTR_ALIGN (__o1->object_base, __o1->next_free, \
394 if (__o1->next_free - (char *)__o1->chunk \
396 __o1->next_free = __o1->chunk_limit; \
397 __o1->object_base = __o1->next_free; \
405 __o->next_free = __o->object_base = (char *)__obj; \
411 (unsigned) ((h)->next_free - (h)->object_base)
414 (unsigned) ((h)->chunk_limit - (h)->next_free)
418 && (h)->next_free == __PTR_ALIGN ((char *) (h)->chunk, \
430 (((h)->next_free + (h)->temp.tempint > (h)->chunk_limit) \
435 (((h)->next_free + (h)->temp.tempint > (h)->chunk_limit) \
437 memcpy ((h)->next_free, where, (h)->temp.tempint), \
438 (h)->next_free += (h)->temp.tempint)
442 (((h)->next_free + (h)->temp.tempint + 1 > (h)->chunk_limit) \
444 memcpy ((h)->next_free, where, (h)->temp.tempint), \
445 (h)->next_free += (h)->temp.tempint, \
446 *((h)->next_free)++ = 0)
449 ( (((h)->next_free + 1 > (h)->chunk_limit) \
454 ( (((h)->next_free + sizeof (char *) > (h)->chunk_limit) \
459 ( (((h)->next_free + sizeof (int) > (h)->chunk_limit) \
464 (((const void **) ((h)->next_free += sizeof (void *)))[-1] = (aptr))
467 (((int *) ((h)->next_free += sizeof (int)))[-1] = (aint))
471 (((h)->chunk_limit - (h)->next_free < (h)->temp.tempint) \
485 ( ((h)->next_free == (h)->object_base \
489 (h)->next_free \
490 = __PTR_ALIGN ((h)->object_base, (h)->next_free, \
492 (((h)->next_free - (char *) (h)->chunk \
494 ? ((h)->next_free = (h)->chunk_limit) : 0), \
495 (h)->object_base = (h)->next_free, \
502 ? (int) ((h)->next_free = (h)->object_base \