Home | History | Annotate | Download | only in lib

Lines Matching refs:next_free

156   char	*next_free;		/* where to add next char to current object */
216 #define obstack_next_free(h) ((h)->next_free)
249 #define obstack_1grow_fast(h,achar) (*((h)->next_free)++ = (achar))
251 #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; \
412 (unsigned) ((h)->next_free - (h)->object_base)
415 (unsigned) ((h)->chunk_limit - (h)->next_free)
419 && (h)->next_free == __PTR_ALIGN ((char *) (h)->chunk, \
431 (((h)->next_free + (h)->temp.tempint > (h)->chunk_limit) \
436 (((h)->next_free + (h)->temp.tempint > (h)->chunk_limit) \
438 memcpy ((h)->next_free, where, (h)->temp.tempint), \
439 (h)->next_free += (h)->temp.tempint)
443 (((h)->next_free + (h)->temp.tempint + 1 > (h)->chunk_limit) \
445 memcpy ((h)->next_free, where, (h)->temp.tempint), \
446 (h)->next_free += (h)->temp.tempint, \
447 *((h)->next_free)++ = 0)
450 ( (((h)->next_free + 1 > (h)->chunk_limit) \
455 ( (((h)->next_free + sizeof (char *) > (h)->chunk_limit) \
460 ( (((h)->next_free + sizeof (int) > (h)->chunk_limit) \
465 (((const void **) ((h)->next_free += sizeof (void *)))[-1] = (aptr))
468 (((int *) ((h)->next_free += sizeof (int)))[-1] = (aint))
472 (((h)->chunk_limit - (h)->next_free < (h)->temp.tempint) \
486 ( ((h)->next_free == (h)->object_base \
490 (h)->next_free \
491 = __PTR_ALIGN ((h)->object_base, (h)->next_free, \
493 (((h)->next_free - (char *) (h)->chunk \
495 ? ((h)->next_free = (h)->chunk_limit) : 0), \
496 (h)->object_base = (h)->next_free, \
503 ? (int) ((h)->next_free = (h)->object_base \