Home | History | Annotate | Download | only in include

Lines Matching refs:where

75 so we just point to it where it lies.  No moving of chars is
133 where pointers can be converted to integers, aligned as integers,
157 char *next_free; /* where to add next char to current object */
296 # define obstack_grow(OBSTACK,where,length) \
302 memcpy (__o->next_free, where, __len); \
306 # define obstack_grow0(OBSTACK,where,length) \
312 memcpy (__o->next_free, where, __len); \
372 # define obstack_copy(OBSTACK,where,length) \
375 obstack_grow (__h, (where), (length)); \
378 # define obstack_copy0(OBSTACK,where,length) \
381 obstack_grow0 (__h, (where), (length)); \
435 # define obstack_grow(h,where,length) \
439 memcpy ((h)->next_free, where, (h)->temp.tempint), \
442 # define obstack_grow0(h,where,length) \
446 memcpy ((h)->next_free, where, (h)->temp.tempint), \
480 # define obstack_copy(h,where,length) \
481 (obstack_grow ((h), (where), (length)), obstack_finish ((h)))
483 # define obstack_copy0(h,where,length) \
484 (obstack_grow0 ((h), (where), (length)), obstack_finish ((h)))