HomeSort by relevance Sort by last modified time
    Searched defs:alloca (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /toolchain/binutils/binutils-2.27/include/
alloca-conf.h 23 # include <alloca.h>
26 # if !defined alloca
27 # define alloca __builtin_alloca macro
35 #pragma alloca
39 # define alloca _alloca macro
41 # if !defined alloca
46 extern "C" void *alloca (size_t);
48 extern void *alloca (size_t);
51 extern void *alloca ();
54 extern char *alloca ();
    [all...]
  /bionic/libc/include/
alloca.h 34 #define alloca(size) __builtin_alloca(size) macro
  /external/mesa3d/include/
c99_alloca.h 36 # define alloca _alloca macro
40 # include <alloca.h>
  /external/syslinux/com32/include/
alloca.h 2 * alloca.h
4 * Just call the builtin alloca() function
10 #define alloca(size) __builtin_alloca(size) macro
  /external/syslinux/gpxe/src/include/
alloca.h 21 * alloca(); use it only if you already know what they are.
23 #define alloca(size) __builtin_alloca ( size ) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
alloca.h 30 #undef alloca macro
33 extern void *alloca (size_t __size) __THROW;
36 # define alloca(size) __builtin_alloca (size) macro
41 #endif /* alloca.h */
  /toolchain/binutils/binutils-2.27/libiberty/
putenv.c 33 #pragma alloca
52 # include <alloca.h>
54 # ifndef alloca
56 # define alloca __builtin_alloca macro
58 extern char *alloca ();
60 # endif /* alloca */
76 char *name = (char *) alloca (name_end - string + 1);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xalloca.h 68 # include <alloca.h>
80 # ifndef alloca
81 # define alloca __builtin_alloca macro
82 # endif /* !alloca */
83 # define ALLOCATE_LOCAL(size) alloca((int)(size))
87 * warning: old mips alloca (pre 2.10) is unusable, new one is built in
89 * from alloca.h which #defines alloca.
91 # if defined(__sun) || defined(alloca)
93 * Some System V boxes extract alloca.o from /lib/libPW.a; if yo
    [all...]
  /external/compiler-rt/test/asan/TestCases/
alloca_constant_size.cc 10 // MSVC provides _alloca instead of alloca.
11 #if defined(_MSC_VER) && !defined(alloca)
12 # define alloca _alloca macro
14 #include <alloca.h>
19 char *dynamic_buffer = (char *)alloca(200);
alloca_loop_unpoisoning.cc 13 // MSVC provides _alloca instead of alloca.
14 #if defined(_MSC_VER) && !defined(alloca)
15 # define alloca _alloca macro
25 alloca(len);
28 bot = alloca(i);
alloca_vla_interact.cc 13 // MSVC provides _alloca instead of alloca.
14 #if defined(_MSC_VER) && !defined(alloca)
15 # define alloca _alloca macro
22 // This alloca call should live until the end of foo.
23 char *alloca1 = (char *)alloca(len);
28 // Check that previous alloca was unpoisoned at the end of iteration.
33 // Alloca is unpoisoned at the end of iteration,
35 bot = (char *)alloca(i) - RZ;
  /external/python/cpython2/Modules/_ctypes/libffi_msvc/
fficonfig.h 10 #define alloca _alloca macro
14 /* Define if using alloca.c. */
18 This function is required for alloca.c support on those systems. */
21 /* Define if you have alloca, as a function or macro. */
24 /* Define if you have <alloca.h> and it should be used (not on Ultrix). */
27 /* If using the C implementation of alloca, define if you know the
  /external/python/cpython3/Modules/_ctypes/libffi_msvc/
fficonfig.h 10 #define alloca _alloca macro
14 /* Define if using alloca.c. */
18 This function is required for alloca.c support on those systems. */
21 /* Define if you have alloca, as a function or macro. */
24 /* Define if you have <alloca.h> and it should be used (not on Ultrix). */
27 /* If using the C implementation of alloca, define if you know the
  /external/clang/test/Sema/
builtins-gnu-mode.c 5 int alloca; variable
  /external/python/cpython2/Modules/_ctypes/libffi_arm_wince/
fficonfig.h 8 systems. This function is required for `alloca.c' support on those systems.
12 /* Define to 1 if using `alloca.c'. */
31 /* Define to 1 if you have `alloca', as a function or macro. */
34 /* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
129 /* If using the C implementation of alloca, define if you know the
150 #define alloca _alloca macro
ffi_common.h 20 # define alloca __builtin_alloca macro
23 # include <alloca.h>
26 #pragma alloca
28 # ifndef alloca /* predefined by HP cc +Olibcalls */
29 char *alloca ();
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/
stdlib.h 226 * The alloca() function can't be implemented in C, and on some
228 * The GNU C compiler provides a built-in alloca() which we can use;
230 * incarnations of lint. On platforms where alloca() is not in libc,
235 #undef alloca /* some GNU bits try to get cute and define this on their own */ macro
236 #define alloca(sz) __builtin_alloca(sz) macro
238 void *alloca(size_t);
  /external/python/cpython2/Modules/_ctypes/libffi_osx/include/
ffi_common.h 20 # define alloca __builtin_alloca macro
23 # include <alloca.h>
26 # pragma alloca
28 # ifndef alloca /* predefined by HP cc +Olibcalls */
29 char* alloca();
  /external/python/cpython3/Modules/_ctypes/libffi_osx/include/
ffi_common.h 20 # define alloca __builtin_alloca macro
23 # include <alloca.h>
26 # pragma alloca
28 # ifndef alloca /* predefined by HP cc +Olibcalls */
29 char* alloca();
  /external/libffi/include/
ffi_common.h 23 # include <alloca.h>
26 # ifndef alloca
27 # define alloca __builtin_alloca macro
34 # include <alloca.h>
37 # pragma alloca
39 # ifndef alloca /* predefined by HP cc +Olibcalls */
41 # define alloca _alloca macro
43 char *alloca ();
  /external/python/cpython2/Modules/_ctypes/libffi/include/
ffi_common.h 23 # include <alloca.h>
26 # ifndef alloca
27 # define alloca __builtin_alloca macro
34 # include <alloca.h>
37 # pragma alloca
39 # ifndef alloca /* predefined by HP cc +Olibcalls */
41 # define alloca _alloca macro
43 char *alloca ();
  /external/python/cpython3/Modules/_ctypes/libffi/include/
ffi_common.h 23 # include <alloca.h>
26 # ifndef alloca
27 # define alloca __builtin_alloca macro
34 # include <alloca.h>
37 # pragma alloca
39 # ifndef alloca /* predefined by HP cc +Olibcalls */
41 # define alloca _alloca macro
43 char *alloca ();
  /external/e2fsprogs/intl/
printf.c 25 # define alloca __builtin_alloca macro
30 # define alloca _alloca macro
33 # include <alloca.h>
36 #pragma alloca
38 # ifndef alloca
39 char *alloca ();
  /external/webrtc/webrtc/base/
stringutils.h 22 #define alloca _alloca macro
29 #include <alloca.h>
41 #define STACK_ARRAY(TYPE, LEN) static_cast<TYPE*>(::alloca((LEN)*sizeof(TYPE)))
  /external/clang/include/clang/Basic/
Builtins.h 22 // VC++ defines 'alloca' as an object-like macro, which interferes with our
24 #undef alloca macro

Completed in 576 milliseconds

1 2 3 4