Home
last modified time | relevance | path

Searched refs:OBSTACK (Results 1 – 12 of 12) sorted by relevance

/dragonfly/contrib/grep/lib/
HDobstack.h296 # define obstack_object_size(OBSTACK) \ argument
298 ({ struct obstack const *__o = (OBSTACK); \
303 # define obstack_room(OBSTACK) \ argument
305 ({ struct obstack const *__o1 = (OBSTACK); \
308 # define obstack_make_room(OBSTACK, length) \ argument
310 ({ struct obstack *__o = (OBSTACK); \
316 # define obstack_empty_p(OBSTACK) \ argument
318 ({ struct obstack const *__o = (OBSTACK); \
324 # define obstack_grow(OBSTACK, where, length) \ argument
326 ({ struct obstack *__o = (OBSTACK); \
[all …]
/dragonfly/contrib/binutils-2.27/include/
HDobstack.h285 # define obstack_object_size(OBSTACK) \ argument
287 ({ struct obstack const *__o = (OBSTACK); \
292 # define obstack_room(OBSTACK) \ argument
294 ({ struct obstack const *__o1 = (OBSTACK); \
297 # define obstack_make_room(OBSTACK, length) \ argument
299 ({ struct obstack *__o = (OBSTACK); \
305 # define obstack_empty_p(OBSTACK) \ argument
307 ({ struct obstack const *__o = (OBSTACK); \
313 # define obstack_grow(OBSTACK, where, length) \ argument
315 ({ struct obstack *__o = (OBSTACK); \
[all …]
/dragonfly/contrib/gcc-8.0/include/
HDobstack.h285 # define obstack_object_size(OBSTACK) \ argument
287 ({ struct obstack const *__o = (OBSTACK); \
292 # define obstack_room(OBSTACK) \ argument
294 ({ struct obstack const *__o1 = (OBSTACK); \
297 # define obstack_make_room(OBSTACK, length) \ argument
299 ({ struct obstack *__o = (OBSTACK); \
305 # define obstack_empty_p(OBSTACK) \ argument
307 ({ struct obstack const *__o = (OBSTACK); \
313 # define obstack_grow(OBSTACK, where, length) \ argument
315 ({ struct obstack *__o = (OBSTACK); \
[all …]
/dragonfly/contrib/binutils-2.34/include/
HDobstack.h285 # define obstack_object_size(OBSTACK) \ argument
287 ({ struct obstack const *__o = (OBSTACK); \
292 # define obstack_room(OBSTACK) \ argument
294 ({ struct obstack const *__o1 = (OBSTACK); \
297 # define obstack_make_room(OBSTACK, length) \ argument
299 ({ struct obstack *__o = (OBSTACK); \
305 # define obstack_empty_p(OBSTACK) \ argument
307 ({ struct obstack const *__o = (OBSTACK); \
313 # define obstack_grow(OBSTACK, where, length) \ argument
315 ({ struct obstack *__o = (OBSTACK); \
[all …]
/dragonfly/contrib/gdb-7/include/
HDobstack.h308 # define obstack_object_size(OBSTACK) \ argument
310 ({ struct obstack *__o = (OBSTACK); \
313 # define obstack_room(OBSTACK) \ argument
315 ({ struct obstack *__o = (OBSTACK); \
318 # define obstack_make_room(OBSTACK,length) \ argument
320 ({ struct obstack *__o = (OBSTACK); \
326 # define obstack_empty_p(OBSTACK) \ argument
328 ({ struct obstack *__o = (OBSTACK); \
331 # define obstack_grow(OBSTACK,where,length) \ argument
333 ({ struct obstack *__o = (OBSTACK); \
[all …]
/dragonfly/contrib/gcc-4.7/include/
HDobstack.h308 # define obstack_object_size(OBSTACK) \ argument
310 ({ struct obstack *__o = (OBSTACK); \
313 # define obstack_room(OBSTACK) \ argument
315 ({ struct obstack *__o = (OBSTACK); \
318 # define obstack_make_room(OBSTACK,length) \ argument
320 ({ struct obstack *__o = (OBSTACK); \
326 # define obstack_empty_p(OBSTACK) \ argument
328 ({ struct obstack *__o = (OBSTACK); \
331 # define obstack_grow(OBSTACK,where,length) \ argument
333 ({ struct obstack *__o = (OBSTACK); \
[all …]
/dragonfly/contrib/gdb-7/gdb/
HDgdb_obstack.h27 #define OBSTACK_ZALLOC(OBSTACK,TYPE) \ argument
28 (memset (obstack_alloc ((OBSTACK), sizeof (TYPE)), 0, sizeof (TYPE)))
30 #define OBSTACK_CALLOC(OBSTACK,NUMBER,TYPE) \ argument
31 (memset (obstack_alloc ((OBSTACK), (NUMBER) * sizeof (TYPE)), \
46 #define obstack_grow_str(OBSTACK,STRING) \ argument
47 obstack_grow (OBSTACK, STRING, strlen (STRING))
48 #define obstack_grow_str0(OBSTACK,STRING) \ argument
49 obstack_grow0 (OBSTACK, STRING, strlen (STRING))
51 #define obstack_grow_wstr(OBSTACK, WSTRING) \ argument
52 obstack_grow (OBSTACK, WSTRING, sizeof (gdb_wchar_t) * gdb_wcslen (WSTRING))
/dragonfly/contrib/gcc-4.7/gcc/
HDcoretypes.h160 #define gcc_obstack_init(OBSTACK) \ argument
161 _obstack_begin ((OBSTACK), OBSTACK_CHUNK_SIZE, 0, \
HDregset.h44 #define ALLOC_REG_SET(OBSTACK) BITMAP_ALLOC (OBSTACK) argument
HDbitmap.h192 #define BITMAP_ALLOC(OBSTACK) bitmap_obstack_alloc (OBSTACK) argument
/dragonfly/contrib/gcc-8.0/gcc/
HDregset.h41 #define ALLOC_REG_SET(OBSTACK) BITMAP_ALLOC (OBSTACK) argument
HDcoretypes.h310 #define gcc_obstack_init(OBSTACK) \ argument
311 obstack_specify_allocation ((OBSTACK), OBSTACK_CHUNK_SIZE, 0, \