Lines Matching refs:temp
164 } temp; /* Temporary for some macros. */ member
432 ((h)->temp.tempint = (length), \
433 (((h)->next_free + (h)->temp.tempint > (h)->chunk_limit) \
434 ? (_obstack_newchunk ((h), (h)->temp.tempint), 0) : 0))
437 ((h)->temp.tempint = (length), \
438 (((h)->next_free + (h)->temp.tempint > (h)->chunk_limit) \
439 ? (_obstack_newchunk ((h), (h)->temp.tempint), 0) : 0), \
440 memcpy ((h)->next_free, where, (h)->temp.tempint), \
441 (h)->next_free += (h)->temp.tempint)
444 ((h)->temp.tempint = (length), \
445 (((h)->next_free + (h)->temp.tempint + 1 > (h)->chunk_limit) \
446 ? (_obstack_newchunk ((h), (h)->temp.tempint + 1), 0) : 0), \
447 memcpy ((h)->next_free, where, (h)->temp.tempint), \
448 (h)->next_free += (h)->temp.tempint, \
473 ((h)->temp.tempint = (length), \
474 (((h)->chunk_limit - (h)->next_free < (h)->temp.tempint) \
475 ? (_obstack_newchunk ((h), (h)->temp.tempint), 0) : 0), \
476 obstack_blank_fast (h, (h)->temp.tempint))
491 (h)->temp.tempptr = (h)->object_base, \
499 (h)->temp.tempptr)
502 ((h)->temp.tempint = (char *) (obj) - (char *) (h)->chunk, \
503 ((((h)->temp.tempint > 0 \
504 && (h)->temp.tempint < (h)->chunk_limit - (char *) (h)->chunk)) \
506 = (h)->temp.tempint + (char *) (h)->chunk) \
507 : (__obstack_free) (h, (h)->temp.tempint + (char *) (h)->chunk)))