Lines Matching refs:OBSTACK
270 # define obstack_object_size(OBSTACK) \ argument
272 ({ struct obstack const *__o = (OBSTACK); \
275 # define obstack_room(OBSTACK) \ argument
277 ({ struct obstack const *__o = (OBSTACK); \
280 # define obstack_make_room(OBSTACK, length) \ argument
282 ({ struct obstack *__o = (OBSTACK); \
288 # define obstack_empty_p(OBSTACK) \ argument
290 ({ struct obstack const *__o = (OBSTACK); \
296 # define obstack_grow(OBSTACK, where, length) \ argument
298 ({ struct obstack *__o = (OBSTACK); \
306 # define obstack_grow0(OBSTACK, where, length) \ argument
308 ({ struct obstack *__o = (OBSTACK); \
317 # define obstack_1grow(OBSTACK, datum) \ argument
319 ({ struct obstack *__o = (OBSTACK); \
329 # define obstack_ptr_grow(OBSTACK, datum) \ argument
331 ({ struct obstack *__o = (OBSTACK); \
336 # define obstack_int_grow(OBSTACK, datum) \ argument
338 ({ struct obstack *__o = (OBSTACK); \
343 # define obstack_ptr_grow_fast(OBSTACK, aptr) \ argument
345 ({ struct obstack *__o1 = (OBSTACK); \
351 # define obstack_int_grow_fast(OBSTACK, aint) \ argument
353 ({ struct obstack *__o1 = (OBSTACK); \
359 # define obstack_blank(OBSTACK, length) \ argument
361 ({ struct obstack *__o = (OBSTACK); \
368 # define obstack_alloc(OBSTACK, length) \ argument
370 ({ struct obstack *__h = (OBSTACK); \
374 # define obstack_copy(OBSTACK, where, length) \ argument
376 ({ struct obstack *__h = (OBSTACK); \
380 # define obstack_copy0(OBSTACK, where, length) \ argument
382 ({ struct obstack *__h = (OBSTACK); \
388 # define obstack_finish(OBSTACK) \ argument
390 ({ struct obstack *__o1 = (OBSTACK); \
403 # define obstack_free(OBSTACK, OBJ) \ argument
405 ({ struct obstack *__o = (OBSTACK); \