where             324 maint/gnulib/lib/obstack.h # define obstack_grow(OBSTACK, where, length)				      \
where             330 maint/gnulib/lib/obstack.h        memcpy (__o->next_free, where, __len);				      \
where             334 maint/gnulib/lib/obstack.h # define obstack_grow0(OBSTACK, where, length)				      \
where             340 maint/gnulib/lib/obstack.h        memcpy (__o->next_free, where, __len);				      \
where             400 maint/gnulib/lib/obstack.h # define obstack_copy(OBSTACK, where, length)				      \
where             403 maint/gnulib/lib/obstack.h        obstack_grow (__h, (where), (length));				      \
where             406 maint/gnulib/lib/obstack.h # define obstack_copy0(OBSTACK, where, length)				      \
where             409 maint/gnulib/lib/obstack.h        obstack_grow0 (__h, (where), (length));				      \
where             464 maint/gnulib/lib/obstack.h # define obstack_grow(h, where, length)					      \
where             468 maint/gnulib/lib/obstack.h    memcpy ((h)->next_free, where, (h)->temp.i),				      \
where             472 maint/gnulib/lib/obstack.h # define obstack_grow0(h, where, length)				      \
where             476 maint/gnulib/lib/obstack.h    memcpy ((h)->next_free, where, (h)->temp.i),				      \
where             513 maint/gnulib/lib/obstack.h # define obstack_copy(h, where, length)					      \
where             514 maint/gnulib/lib/obstack.h   (obstack_grow ((h), (where), (length)), obstack_finish ((h)))
where             516 maint/gnulib/lib/obstack.h # define obstack_copy0(h, where, length)				      \
where             517 maint/gnulib/lib/obstack.h   (obstack_grow0 ((h), (where), (length)), obstack_finish ((h)))