Lines Matching refs:tempint
160 PTR_INT_TYPE tempint; member
426 ( (h)->temp.tempint = (length), \
427 (((h)->next_free + (h)->temp.tempint > (h)->chunk_limit) \
428 ? (_obstack_newchunk ((h), (h)->temp.tempint), 0) : 0))
431 ( (h)->temp.tempint = (length), \
432 (((h)->next_free + (h)->temp.tempint > (h)->chunk_limit) \
433 ? (_obstack_newchunk ((h), (h)->temp.tempint), 0) : 0), \
434 memcpy ((h)->next_free, where, (h)->temp.tempint), \
435 (h)->next_free += (h)->temp.tempint)
438 ( (h)->temp.tempint = (length), \
439 (((h)->next_free + (h)->temp.tempint + 1 > (h)->chunk_limit) \
440 ? (_obstack_newchunk ((h), (h)->temp.tempint + 1), 0) : 0), \
441 memcpy ((h)->next_free, where, (h)->temp.tempint), \
442 (h)->next_free += (h)->temp.tempint, \
467 ( (h)->temp.tempint = (length), \
468 (((h)->chunk_limit - (h)->next_free < (h)->temp.tempint) \
469 ? (_obstack_newchunk ((h), (h)->temp.tempint), 0) : 0), \
470 obstack_blank_fast (h, (h)->temp.tempint))
496 ( (h)->temp.tempint = (char *) (obj) - (char *) (h)->chunk, \
497 ((((h)->temp.tempint > 0 \
498 && (h)->temp.tempint < (h)->chunk_limit - (char *) (h)->chunk)) \
500 = (h)->temp.tempint + (char *) (h)->chunk) \
501 : (((obstack_free) ((h), (h)->temp.tempint + (char *) (h)->chunk), 0), 0)))