Home | History | Annotate | Download | only in include

Lines Matching refs:where

73    so we just point to it where it lies.  No moving of chars is
134 where pointers can be converted to integers, aligned as integers,
168 char *next_free; /* where to add next char to current object */
313 # define obstack_grow(OBSTACK, where, length) \
319 memcpy (__o->next_free, where, __len); \
323 # define obstack_grow0(OBSTACK, where, length) \
329 memcpy (__o->next_free, where, __len); \
389 # define obstack_copy(OBSTACK, where, length) \
392 obstack_grow (__h, (where), (length)); \
395 # define obstack_copy0(OBSTACK, where, length) \
398 obstack_grow0 (__h, (where), (length)); \
453 # define obstack_grow(h, where, length) \
457 memcpy ((h)->next_free, where, (h)->temp.i), \
461 # define obstack_grow0(h, where, length) \
465 memcpy ((h)->next_free, where, (h)->temp.i), \
502 # define obstack_copy(h, where, length) \
503 (obstack_grow ((h), (where), (length)), obstack_finish ((h)))
505 # define obstack_copy0(h, where, length) \
506 (obstack_grow0 ((h), (where), (length)), obstack_finish ((h)))