Lines Matching refs:next_free

168   char *next_free;              /* where to add next char to current object */  member
236 #define obstack_next_free(h) ((void *) (h)->next_free)
269 #define obstack_1grow_fast(h, achar) ((void) (*((h)->next_free)++ = (achar)))
271 #define obstack_blank_fast(h, n) ((void) ((h)->next_free += (n)))
288 (_OBSTACK_SIZE_T) (__o->next_free - __o->object_base); })
295 (_OBSTACK_SIZE_T) (__o1->chunk_limit - __o1->next_free); })
309 && __o->next_free == __PTR_ALIGN ((char *) __o->chunk, \
319 memcpy (__o->next_free, where, __len); \
320 __o->next_free += __len; \
329 memcpy (__o->next_free, where, __len); \
330 __o->next_free += __len; \
331 *(__o->next_free)++ = 0; \
362 void *__p1 = __o1->next_free; \
364 __o1->next_free += sizeof (const void *); \
370 void *__p1 = __o1->next_free; \
372 __o1->next_free += sizeof (int); \
407 if (__o1->next_free == __value) \
409 __o1->next_free \
410 = __PTR_ALIGN (__o1->object_base, __o1->next_free, \
412 if ((size_t) (__o1->next_free - (char *) __o1->chunk) \
414 __o1->next_free = __o1->chunk_limit; \
415 __o1->object_base = __o1->next_free; \
423 __o->next_free = __o->object_base = (char *) __obj; \
430 ((_OBSTACK_SIZE_T) ((h)->next_free - (h)->object_base))
433 ((_OBSTACK_SIZE_T) ((h)->chunk_limit - (h)->next_free))
437 && (h)->next_free == __PTR_ALIGN ((char *) (h)->chunk, \
457 memcpy ((h)->next_free, where, (h)->temp.i), \
458 (h)->next_free += (h)->temp.i, \
465 memcpy ((h)->next_free, where, (h)->temp.i), \
466 (h)->next_free += (h)->temp.i, \
467 *((h)->next_free)++ = 0, \
486 (((const void **) ((h)->next_free += sizeof (void *)))[-1] = (aptr), \
490 (((int *) ((h)->next_free += sizeof (int)))[-1] = (aint), \
509 (((h)->next_free == (h)->object_base \
513 (h)->next_free \
514 = __PTR_ALIGN ((h)->object_base, (h)->next_free, \
516 (((size_t) ((h)->next_free - (char *) (h)->chunk) \
518 ? ((h)->next_free = (h)->chunk_limit) : 0), \
519 (h)->object_base = (h)->next_free, \
526 ? (void) ((h)->next_free = (h)->object_base = (char *) (h)->temp.p) \