Lines Matching refs:obstack
44 obstack_int32_grow (struct obstack *obstack, int32_t data) in obstack_int32_grow() argument
46 assert (LOCFILE_ALIGNED_P (obstack_object_size (obstack))); in obstack_int32_grow()
49 obstack_int_grow (obstack, data); in obstack_int32_grow()
51 obstack_grow (obstack, &data, sizeof (int32_t)); in obstack_int32_grow()
56 obstack_int32_grow_fast (struct obstack *obstack, int32_t data) in obstack_int32_grow_fast() argument
58 assert (LOCFILE_ALIGNED_P (obstack_object_size (obstack))); in obstack_int32_grow_fast()
61 obstack_int_grow_fast (obstack, data); in obstack_int32_grow_fast()
63 obstack_grow (obstack, &data, sizeof (int32_t)); in obstack_int32_grow_fast()
241 struct obstack mempool;
1898 output_weight (struct obstack *pool, struct locale_collate_t *collate, in output_weight()
1936 output_weightwc (struct obstack *pool, struct locale_collate_t *collate, in output_weightwc()
1975 struct obstack *weightpool;
1976 struct obstack *extrapool;
1977 struct obstack *indpool;
2116 struct obstack weightpool; in collate_output()
2117 struct obstack extrapool; in collate_output()
2118 struct obstack indirectpool; in collate_output()