Lines Matching refs:obstack

163 struct obstack		/* control current object in current chunk */  struct
197 extern void _obstack_newchunk (struct obstack *, int);
198 extern void _obstack_free (struct obstack *, void *);
199 extern int _obstack_begin (struct obstack *, int, int,
201 extern int _obstack_begin_1 (struct obstack *, int, int,
204 extern int _obstack_memory_used (struct obstack *);
218 void obstack_init (struct obstack *obstack);
220 void * obstack_alloc (struct obstack *obstack, int size);
222 void * obstack_copy (struct obstack *obstack, void *address, int size);
223 void * obstack_copy0 (struct obstack *obstack, void *address, int size);
225 void obstack_free (struct obstack *obstack, void *block);
227 void obstack_blank (struct obstack *obstack, int size);
229 void obstack_grow (struct obstack *obstack, void *data, int size);
230 void obstack_grow0 (struct obstack *obstack, void *data, int size);
232 void obstack_1grow (struct obstack *obstack, int data_char);
233 void obstack_ptr_grow (struct obstack *obstack, void *data);
234 void obstack_int_grow (struct obstack *obstack, int data);
236 void * obstack_finish (struct obstack *obstack);
238 int obstack_object_size (struct obstack *obstack);
240 int obstack_room (struct obstack *obstack);
241 void obstack_make_room (struct obstack *obstack, int size);
242 void obstack_1grow_fast (struct obstack *obstack, int data_char);
243 void obstack_ptr_grow_fast (struct obstack *obstack, void *data);
244 void obstack_int_grow_fast (struct obstack *obstack, int data);
245 void obstack_blank_fast (struct obstack *obstack, int size);
247 void * obstack_base (struct obstack *obstack);
248 void * obstack_next_free (struct obstack *obstack);
249 int obstack_alignment_mask (struct obstack *obstack);
250 int obstack_chunk_size (struct obstack *obstack);
251 int obstack_memory_used (struct obstack *obstack);
363 ({ struct obstack *__o = (OBSTACK); \
368 ({ struct obstack *__o = (OBSTACK); \
373 ({ struct obstack *__o = (OBSTACK); \
381 ({ struct obstack *__o = (OBSTACK); \
386 ({ struct obstack *__o = (OBSTACK); \
396 ({ struct obstack *__o = (OBSTACK); \
407 ({ struct obstack *__o = (OBSTACK); \
419 ({ struct obstack *__o = (OBSTACK); \
427 ({ struct obstack *__o = (OBSTACK); \
438 ({ struct obstack *__o = (OBSTACK); \
447 ({ struct obstack *__h = (OBSTACK); \
453 ({ struct obstack *__h = (OBSTACK); \
459 ({ struct obstack *__h = (OBSTACK); \
467 ({ struct obstack *__o1 = (OBSTACK); \
483 ({ struct obstack *__o = (OBSTACK); \