Home | History | Annotate | Download | only in include

Lines Matching defs:obstack

25 #include "obstack.h"
44 /* Obstack for allocating bitmaps and elements from. */
48 struct obstack GTY ((skip)) obstack;
79 bitmap_obstack *obstack; /* Obstack to allocate elements from.
88 extern bitmap_obstack bitmap_default_obstack; /* Default bitmap obstack */
155 /* Initialize and release a bitmap obstack. */
161 /* Initialize a bitmap header. OBSTACK indicates the bitmap obstack
165 bitmap_initialize_stat (bitmap head, bitmap_obstack *obstack MEM_STAT_DECL)
168 head->obstack = obstack;
175 /* Allocate and free bitmaps from obstack, malloc and gc'd memory. */
176 extern bitmap bitmap_obstack_alloc_stat (bitmap_obstack *obstack MEM_STAT_DECL);
191 /* Allocate a bitmap from a bit obstack. */
192 #define BITMAP_ALLOC(OBSTACK) bitmap_obstack_alloc (OBSTACK)