Home
last modified time | relevance | path

Searched refs:obstack_alloc (Results 1 – 6 of 6) sorted by relevance

/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
Dlibiberty.h366 #define XOBNEW(O, T) ((T *) obstack_alloc ((O), sizeof (T)))
367 #define XOBNEWVEC(O, T, N) ((T *) obstack_alloc ((O), sizeof (T) * (N)))
368 #define XOBNEWVAR(O, T, S) ((T *) obstack_alloc ((O), (S)))
Dobstack.h205 void * obstack_alloc (struct obstack *obstack, int size);
401 # define obstack_alloc(OBSTACK,length) \ macro
509 # define obstack_alloc(h,length) \ macro
/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.17-4.8/sysroot/usr/include/
Dobstack.h361 # define obstack_alloc(OBSTACK,length) \ macro
471 # define obstack_alloc(h,length) \ macro
/aosp_15_r20/external/obstack/include/
H A Dobstack.h383 # define obstack_alloc(OBSTACK, length) \ macro
499 # define obstack_alloc(h, length) \ macro
/aosp_15_r20/external/compiler-rt/test/msan/Linux/
H A Dobstack.cc20 void *p = obstack_alloc(&obs, sz); in main()
/aosp_15_r20/external/elfutils/lib/
H A Deu-config.h147 ({ size_t _s = (size); memset (obstack_alloc (ob, _s), '\0', _s); })