Home | History | Annotate | Download | only in lib

Lines Matching refs:obstack

0 /* obstack.c - subroutines used implicitly by object stack macros
21 # include <obstack.h>
25 # include "obstack.h"
29 incremented whenever callers compiled using an old obstack.h can no
30 longer properly call the functions in this obstack.c. */
109 struct obstack *_obstack_compat;
135 /* Initialize an obstack H for use. Specify chunk size SIZE (0 means default).
144 _obstack_begin (struct obstack *h,
191 _obstack_begin_1 (struct obstack *h, int size, int alignment,
238 /* Allocate a new current chunk for the obstack *H
245 _obstack_newchunk (struct obstack *h, int length)
313 /* Return nonzero if object OBJ has been allocated from obstack H.
318 obstack.h because it is just for debugging. */
319 int _obstack_allocated_p (struct obstack *h, void *obj);
322 _obstack_allocated_p (struct obstack *h, void *obj)
340 /* Free objects in obstack H, including OBJ and everything allocate
346 __obstack_free (struct obstack *h, void *obj)
383 _obstack_memory_used (struct obstack *h)