| /dragonfly/contrib/grep/lib/ |
| HD | obstack.h | 296 # 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/ |
| HD | obstack.h | 285 # 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/ |
| HD | obstack.h | 285 # 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/ |
| HD | obstack.h | 285 # 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/ |
| HD | obstack.h | 308 # 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/ |
| HD | obstack.h | 308 # 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/ |
| HD | gdb_obstack.h | 27 #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/ |
| HD | coretypes.h | 160 #define gcc_obstack_init(OBSTACK) \ argument 161 _obstack_begin ((OBSTACK), OBSTACK_CHUNK_SIZE, 0, \
|
| HD | regset.h | 44 #define ALLOC_REG_SET(OBSTACK) BITMAP_ALLOC (OBSTACK) argument
|
| HD | bitmap.h | 192 #define BITMAP_ALLOC(OBSTACK) bitmap_obstack_alloc (OBSTACK) argument
|
| /dragonfly/contrib/gcc-8.0/gcc/ |
| HD | regset.h | 41 #define ALLOC_REG_SET(OBSTACK) BITMAP_ALLOC (OBSTACK) argument
|
| HD | coretypes.h | 310 #define gcc_obstack_init(OBSTACK) \ argument 311 obstack_specify_allocation ((OBSTACK), OBSTACK_CHUNK_SIZE, 0, \
|