Lines Matching defs:next_free

155   char  *next_free;             /* where to add next char to current object */
220 #define obstack_next_free(h) ((h)->next_free)
253 #define obstack_1grow_fast(h,achar) (*((h)->next_free)++ = (achar))
255 #define obstack_blank_fast(h,n) ((h)->next_free += (n))
276 (unsigned) (__o->next_free - __o->object_base); })
281 (unsigned) (__o->chunk_limit - __o->next_free); })
287 if (__o->chunk_limit - __o->next_free < __len) \
295 && __o->next_free == __PTR_ALIGN ((char *) __o->chunk, \
303 if (__o->next_free + __len > __o->chunk_limit) \
305 memcpy (__o->next_free, where, __len); \
306 __o->next_free += __len; \
313 if (__o->next_free + __len + 1 > __o->chunk_limit) \
315 memcpy (__o->next_free, where, __len); \
316 __o->next_free += __len; \
317 *(__o->next_free)++ = 0; \
323 if (__o->next_free + 1 > __o->chunk_limit) \
335 if (__o->next_free + sizeof (void *) > __o->chunk_limit) \
342 if (__o->next_free + sizeof (int) > __o->chunk_limit) \
349 *(const void **) __o1->next_free = (aptr); \
350 __o1->next_free += sizeof (const void *); \
356 *(int *) __o1->next_free = (aint); \
357 __o1->next_free += sizeof (int); \
364 if (__o->chunk_limit - __o->next_free < __len) \
393 if (__o1->next_free == __value) \
395 __o1->next_free \
396 = __PTR_ALIGN (__o1->object_base, __o1->next_free, \
398 if (__o1->next_free - (char *)__o1->chunk \
400 __o1->next_free = __o1->chunk_limit; \
401 __o1->object_base = __o1->next_free; \
409 __o->next_free = __o->object_base = (char *)__obj; \
416 (unsigned) ((h)->next_free - (h)->object_base)
419 (unsigned) ((h)->chunk_limit - (h)->next_free)
423 && (h)->next_free == __PTR_ALIGN ((char *) (h)->chunk, \
435 (((h)->next_free + (h)->temp.tempint > (h)->chunk_limit) \
440 (((h)->next_free + (h)->temp.tempint > (h)->chunk_limit) \
442 memcpy ((h)->next_free, where, (h)->temp.tempint), \
443 (h)->next_free += (h)->temp.tempint)
447 (((h)->next_free + (h)->temp.tempint + 1 > (h)->chunk_limit) \
449 memcpy ((h)->next_free, where, (h)->temp.tempint), \
450 (h)->next_free += (h)->temp.tempint, \
451 *((h)->next_free)++ = 0)
454 ( (((h)->next_free + 1 > (h)->chunk_limit) \
459 ( (((h)->next_free + sizeof (char *) > (h)->chunk_limit) \
464 ( (((h)->next_free + sizeof (int) > (h)->chunk_limit) \
469 (((const void **) ((h)->next_free += sizeof (void *)))[-1] = (aptr))
472 (((int *) ((h)->next_free += sizeof (int)))[-1] = (aint))
476 (((h)->chunk_limit - (h)->next_free < (h)->temp.tempint) \
490 ( ((h)->next_free == (h)->object_base \
494 (h)->next_free \
495 = __PTR_ALIGN ((h)->object_base, (h)->next_free, \
497 (((h)->next_free - (char *) (h)->chunk \
499 ? ((h)->next_free = (h)->chunk_limit) : 0), \
500 (h)->object_base = (h)->next_free, \
507 ? (int) ((h)->next_free = (h)->object_base \