Home | History | Annotate | Download | only in libgettextpo

Lines Matching defs:next_free

156   char	*next_free;		/* where to add next char to current object */
221 #define obstack_next_free(h) ((h)->next_free)
254 #define obstack_1grow_fast(h,achar) (*((h)->next_free)++ = (achar))
256 #define obstack_blank_fast(h,n) ((h)->next_free += (n))
277 (unsigned) (__o->next_free - __o->object_base); })
282 (unsigned) (__o->chunk_limit - __o->next_free); })
288 if (__o->chunk_limit - __o->next_free < __len) \
296 && __o->next_free == __PTR_ALIGN ((char *) __o->chunk, \
304 if (__o->next_free + __len > __o->chunk_limit) \
306 memcpy (__o->next_free, where, __len); \
307 __o->next_free += __len; \
314 if (__o->next_free + __len + 1 > __o->chunk_limit) \
316 memcpy (__o->next_free, where, __len); \
317 __o->next_free += __len; \
318 *(__o->next_free)++ = 0; \
324 if (__o->next_free + 1 > __o->chunk_limit) \
336 if (__o->next_free + sizeof (void *) > __o->chunk_limit) \
343 if (__o->next_free + sizeof (int) > __o->chunk_limit) \
350 *(const void **) __o1->next_free = (aptr); \
351 __o1->next_free += sizeof (const void *); \
357 *(int *) __o1->next_free = (aint); \
358 __o1->next_free += sizeof (int); \
365 if (__o->chunk_limit - __o->next_free < __len) \
394 if (__o1->next_free == __value) \
396 __o1->next_free \
397 = __PTR_ALIGN (__o1->object_base, __o1->next_free, \
399 if (__o1->next_free - (char *)__o1->chunk \
401 __o1->next_free = __o1->chunk_limit; \
402 __o1->object_base = __o1->next_free; \
410 __o->next_free = __o->object_base = (char *)__obj; \
417 (unsigned) ((h)->next_free - (h)->object_base)
420 (unsigned) ((h)->chunk_limit - (h)->next_free)
424 && (h)->next_free == __PTR_ALIGN ((char *) (h)->chunk, \
436 (((h)->next_free + (h)->temp.tempint > (h)->chunk_limit) \
441 (((h)->next_free + (h)->temp.tempint > (h)->chunk_limit) \
443 memcpy ((h)->next_free, where, (h)->temp.tempint), \
444 (h)->next_free += (h)->temp.tempint)
448 (((h)->next_free + (h)->temp.tempint + 1 > (h)->chunk_limit) \
450 memcpy ((h)->next_free, where, (h)->temp.tempint), \
451 (h)->next_free += (h)->temp.tempint, \
452 *((h)->next_free)++ = 0)
455 ( (((h)->next_free + 1 > (h)->chunk_limit) \
460 ( (((h)->next_free + sizeof (char *) > (h)->chunk_limit) \
465 ( (((h)->next_free + sizeof (int) > (h)->chunk_limit) \
470 (((const void **) ((h)->next_free += sizeof (void *)))[-1] = (aptr))
473 (((int *) ((h)->next_free += sizeof (int)))[-1] = (aint))
477 (((h)->chunk_limit - (h)->next_free < (h)->temp.tempint) \
491 ( ((h)->next_free == (h)->object_base \
495 (h)->next_free \
496 = __PTR_ALIGN ((h)->object_base, (h)->next_free, \
498 (((h)->next_free - (char *) (h)->chunk \
500 ? ((h)->next_free = (h)->chunk_limit) : 0), \
501 (h)->object_base = (h)->next_free, \
508 ? (int) ((h)->next_free = (h)->object_base \