Lines Matching refs:obstack
0 /* obstack.c - subroutines used implicitly by object stack macros
26 # include <obstack.h>
29 # include "obstack.h"
33 incremented whenever callers compiled using an old obstack.h can no
34 longer properly call the functions in this obstack.c. */
119 struct obstack *_obstack_compat;
145 /* Initialize an obstack H for use. Specify chunk size SIZE (0 means default).
154 _obstack_begin (struct obstack *h,
201 _obstack_begin_1 (struct obstack *h, int size, int alignment,
248 /* Allocate a new current chunk for the obstack *H
255 _obstack_newchunk (struct obstack *h, int length)
323 /* Return nonzero if object OBJ has been allocated from obstack H.
328 obstack.h because it is just for debugging. */
329 int _obstack_allocated_p (struct obstack *h, void *obj);
332 _obstack_allocated_p (struct obstack *h, void *obj)
350 /* Free objects in obstack H, including OBJ and everything allocate
356 obstack_free (struct obstack *h, void *obj)
393 _obstack_memory_used (struct obstack *h)