Lines Matching refs:temp
160 } temp; /* Temporary for some macros. */ member
429 ( (h)->temp.tempint = (length), \
430 (((h)->next_free + (h)->temp.tempint > (h)->chunk_limit) \
431 ? (_obstack_newchunk ((h), (h)->temp.tempint), 0) : 0))
434 ( (h)->temp.tempint = (length), \
435 (((h)->next_free + (h)->temp.tempint > (h)->chunk_limit) \
436 ? (_obstack_newchunk ((h), (h)->temp.tempint), 0) : 0), \
437 memcpy ((h)->next_free, where, (h)->temp.tempint), \
438 (h)->next_free += (h)->temp.tempint)
441 ( (h)->temp.tempint = (length), \
442 (((h)->next_free + (h)->temp.tempint + 1 > (h)->chunk_limit) \
443 ? (_obstack_newchunk ((h), (h)->temp.tempint + 1), 0) : 0), \
444 memcpy ((h)->next_free, where, (h)->temp.tempint), \
445 (h)->next_free += (h)->temp.tempint, \
470 ( (h)->temp.tempint = (length), \
471 (((h)->chunk_limit - (h)->next_free < (h)->temp.tempint) \
472 ? (_obstack_newchunk ((h), (h)->temp.tempint), 0) : 0), \
473 obstack_blank_fast (h, (h)->temp.tempint))
488 (h)->temp.tempptr = (h)->object_base, \
496 (h)->temp.tempptr)
499 ( (h)->temp.tempint = (char *) (obj) - (char *) (h)->chunk, \
500 ((((h)->temp.tempint > 0 \
501 && (h)->temp.tempint < (h)->chunk_limit - (char *) (h)->chunk)) \
503 = (h)->temp.tempint + (char *) (h)->chunk) \
504 : (((__obstack_free) ((h), (h)->temp.tempint + (char *) (h)->chunk), 0), 0)))