Lines Matching refs:obstack
95 struct obstack *_obstack;
142 _obstack_begin (struct obstack *h, int size, int alignment, in _obstack_begin()
186 _obstack_begin_1 (struct obstack *h, int size, int alignment, in _obstack_begin_1()
238 _obstack_newchunk (struct obstack *h, int length) in _obstack_newchunk()
301 int _obstack_allocated_p (struct obstack *h, POINTER obj);
304 _obstack_allocated_p (struct obstack *h, POINTER obj) in _obstack_allocated_p()
330 _obstack_free (struct obstack *h, POINTER obj) in _obstack_free()
362 obstack_free (struct obstack *h, POINTER obj) in obstack_free()
392 _obstack_memory_used (struct obstack *h) in _obstack_memory_used()
433 POINTER (obstack_base) (struct obstack *obstack)
435 return obstack_base (obstack);
438 POINTER (obstack_next_free) (struct obstack *obstack)
440 return obstack_next_free (obstack);
443 int (obstack_object_size) (struct obstack *obstack)
445 return obstack_object_size (obstack);
448 int (obstack_room) (struct obstack *obstack)
450 return obstack_room (obstack);
453 int (obstack_make_room) (struct obstack *obstack, int length)
455 return obstack_make_room (obstack, length);
458 void (obstack_grow) (struct obstack *obstack, POINTER pointer, int length)
460 obstack_grow (obstack, pointer, length);
463 void (obstack_grow0) (struct obstack *obstack, POINTER pointer, int length)
465 obstack_grow0 (obstack, pointer, length);
468 void (obstack_1grow) (struct obstack *obstack, int character)
470 obstack_1grow (obstack, character);
473 void (obstack_blank) (struct obstack *obstack, int length)
475 obstack_blank (obstack, length);
478 void (obstack_1grow_fast) (struct obstack *obstack, int character)
480 obstack_1grow_fast (obstack, character);
483 void (obstack_blank_fast) (struct obstack *obstack, int length)
485 obstack_blank_fast (obstack, length);
488 POINTER (obstack_finish) (struct obstack *obstack)
490 return obstack_finish (obstack);
493 POINTER (obstack_alloc) (struct obstack *obstack, int length)
495 return obstack_alloc (obstack, length);
498 POINTER (obstack_copy) (struct obstack *obstack, POINTER pointer, int length)
500 return obstack_copy (obstack, pointer, length);
503 POINTER (obstack_copy0) (struct obstack *obstack, POINTER pointer, int length)
505 return obstack_copy0 (obstack, pointer, length);