• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/arm-linux/sysroot/usr/include/

Lines Matching refs:next_free

156   char	*next_free;		/* where to add next char to current object */
214 #define obstack_next_free(h) ((h)->next_free)
247 #define obstack_1grow_fast(h,achar) (*((h)->next_free)++ = (achar))
249 #define obstack_blank_fast(h,n) ((h)->next_free += (n))
269 (unsigned) (__o->next_free - __o->object_base); })
274 (unsigned) (__o->chunk_limit - __o->next_free); })
280 if (__o->chunk_limit - __o->next_free < __len) \
288 && __o->next_free == __PTR_ALIGN ((char *) __o->chunk, \
296 if (__o->next_free + __len > __o->chunk_limit) \
298 memcpy (__o->next_free, where, __len); \
299 __o->next_free += __len; \
306 if (__o->next_free + __len + 1 > __o->chunk_limit) \
308 memcpy (__o->next_free, where, __len); \
309 __o->next_free += __len; \
310 *(__o->next_free)++ = 0; \
316 if (__o->next_free + 1 > __o->chunk_limit) \
328 if (__o->next_free + sizeof (void *) > __o->chunk_limit) \
335 if (__o->next_free + sizeof (int) > __o->chunk_limit) \
342 *(const void **) __o1->next_free = (aptr); \
343 __o1->next_free += sizeof (const void *); \
349 *(int *) __o1->next_free = (aint); \
350 __o1->next_free += sizeof (int); \
357 if (__o->chunk_limit - __o->next_free < __len) \
386 if (__o1->next_free == __value) \
388 __o1->next_free \
389 = __PTR_ALIGN (__o1->object_base, __o1->next_free, \
391 if (__o1->next_free - (char *)__o1->chunk \
393 __o1->next_free = __o1->chunk_limit; \
394 __o1->object_base = __o1->next_free; \
402 __o->next_free = __o->object_base = (char *)__obj; \
408 (unsigned) ((h)->next_free - (h)->object_base)
411 (unsigned) ((h)->chunk_limit - (h)->next_free)
415 && (h)->next_free == __PTR_ALIGN ((char *) (h)->chunk, \
427 (((h)->next_free + (h)->temp.tempint > (h)->chunk_limit) \
432 (((h)->next_free + (h)->temp.tempint > (h)->chunk_limit) \
434 memcpy ((h)->next_free, where, (h)->temp.tempint), \
435 (h)->next_free += (h)->temp.tempint)
439 (((h)->next_free + (h)->temp.tempint + 1 > (h)->chunk_limit) \
441 memcpy ((h)->next_free, where, (h)->temp.tempint), \
442 (h)->next_free += (h)->temp.tempint, \
443 *((h)->next_free)++ = 0)
446 ( (((h)->next_free + 1 > (h)->chunk_limit) \
451 ( (((h)->next_free + sizeof (char *) > (h)->chunk_limit) \
456 ( (((h)->next_free + sizeof (int) > (h)->chunk_limit) \
461 (((const void **) ((h)->next_free += sizeof (void *)))[-1] = (aptr))
464 (((int *) ((h)->next_free += sizeof (int)))[-1] = (aint))
468 (((h)->chunk_limit - (h)->next_free < (h)->temp.tempint) \
482 ( ((h)->next_free == (h)->object_base \
486 (h)->next_free \
487 = __PTR_ALIGN ((h)->object_base, (h)->next_free, \
489 (((h)->next_free - (char *) (h)->chunk \
491 ? ((h)->next_free = (h)->chunk_limit) : 0), \
492 (h)->object_base = (h)->next_free, \
499 ? (int) ((h)->next_free = (h)->object_base \