Lines Matching refs:obstack
0 /* obstack.c - subroutines used implicitly by object stack macros
19 # include <obstack.h>
23 # include "obstack.h"
27 incremented whenever callers compiled using an old obstack.h can no
28 longer properly call the functions in this obstack.c. */
107 struct obstack *_obstack_compat;
133 /* Initialize an obstack H for use. Specify chunk size SIZE (0 means default).
142 _obstack_begin (struct obstack *h,
189 _obstack_begin_1 (struct obstack *h, int size, int alignment,
236 /* Allocate a new current chunk for the obstack *H
243 _obstack_newchunk (struct obstack *h, int length)
311 /* Return nonzero if object OBJ has been allocated from obstack H.
316 obstack.h because it is just for debugging. */
317 int _obstack_allocated_p (struct obstack *h, void *obj);
320 _obstack_allocated_p (struct obstack *h, void *obj)
338 /* Free objects in obstack H, including OBJ and everything allocate
344 __obstack_free (struct obstack *h, void *obj)
381 _obstack_memory_used (struct obstack *h)