Home | History | Annotate | Download | only in lib

Lines Matching full:tempint

159     PTR_INT_TYPE tempint;
434 ( (h)->temp.tempint = (length), \
435 (((h)->next_free + (h)->temp.tempint > (h)->chunk_limit) \
436 ? (_obstack_newchunk ((h), (h)->temp.tempint), 0) : 0))
439 ( (h)->temp.tempint = (length), \
440 (((h)->next_free + (h)->temp.tempint > (h)->chunk_limit) \
441 ? (_obstack_newchunk ((h), (h)->temp.tempint), 0) : 0), \
442 memcpy ((h)->next_free, where, (h)->temp.tempint), \
443 (h)->next_free += (h)->temp.tempint)
446 ( (h)->temp.tempint = (length), \
447 (((h)->next_free + (h)->temp.tempint + 1 > (h)->chunk_limit) \
448 ? (_obstack_newchunk ((h), (h)->temp.tempint + 1), 0) : 0), \
449 memcpy ((h)->next_free, where, (h)->temp.tempint), \
450 (h)->next_free += (h)->temp.tempint, \
475 ( (h)->temp.tempint = (length), \
476 (((h)->chunk_limit - (h)->next_free < (h)->temp.tempint) \
477 ? (_obstack_newchunk ((h), (h)->temp.tempint), 0) : 0), \
478 obstack_blank_fast (h, (h)->temp.tempint))
504 ( (h)->temp.tempint = (char *) (obj) - (char *) (h)->chunk, \
505 ((((h)->temp.tempint > 0 \
506 && (h)->temp.tempint < (h)->chunk_limit - (char *) (h)->chunk)) \
508 = (h)->temp.tempint + (char *) (h)->chunk) \
509 : (((__obstack_free) ((h), (h)->temp.tempint + (char *) (h)->chunk), 0), 0)))