HomeSort by relevance Sort by last modified time
    Searched refs:alloca (Results 176 - 200 of 591) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_stdinc.h 210 #if defined(HAVE_ALLOCA) && !defined(alloca)
212 # include <alloca.h>
214 # define alloca __builtin_alloca macro
217 # define alloca _alloca macro
225 #pragma alloca
227 void *alloca(unsigned);
229 char *alloca();
233 #define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count))
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_stdinc.h 210 #if defined(HAVE_ALLOCA) && !defined(alloca)
212 # include <alloca.h>
214 # define alloca __builtin_alloca macro
217 # define alloca _alloca macro
225 #pragma alloca
227 void *alloca(unsigned);
229 char *alloca();
233 #define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count))
  /prebuilts/misc/windows/sdl2/include/
SDL_stdinc.h 200 #if defined(HAVE_ALLOCA) && !defined(alloca)
202 # include <alloca.h>
204 # define alloca __builtin_alloca macro
207 # define alloca _alloca macro
215 #pragma alloca
217 void *alloca(unsigned);
219 char *alloca();
223 #define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count))
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_stdinc.h 210 #if defined(HAVE_ALLOCA) && !defined(alloca)
212 # include <alloca.h>
214 # define alloca __builtin_alloca macro
217 # define alloca _alloca macro
225 #pragma alloca
227 void *alloca(unsigned);
229 char *alloca();
233 #define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count))
  /external/compiler-rt/test/builtins/timing/
divdi3.c 46 dummyp = alloca(1);
moddi3.c 46 dummyp = alloca(1);
modsi3.c 46 dummyp = alloca(1);
muldi3.c 46 dummyp = alloca(1);
udivdi3.c 46 dummyp = alloca(1);
umoddi3.c 46 dummyp = alloca(1);
  /external/dtc/tests/
parent_offset.c 48 parentpath = alloca(pathparentlen + 1);
  /external/libunwind/tests/
forker.c 45 child_argv = alloca ((argc - 1) * sizeof (char *));
  /external/llvm/lib/Support/Windows/
explicit_symbols.inc 5 EXPLICIT_SYMBOL2(alloca, _alloca)
71 EXPLICIT_SYMBOL2(alloca, _alloca_probe)
  /external/mesa3d/src/gallium/drivers/ddebug/
dd_util.h 85 s = alloca(len + 1);
  /external/python/cpython2/PC/
import_nt.c 13 #include "malloc.h" /* for alloca */
48 /* alloca == no free required, but memory only local to fn,
51 moduleKey = alloca(bufSize);
  /toolchain/binutils/binutils-2.25/gas/
remap.c 87 s = (char *) alloca (name_len + map->new_len);
  /external/libvorbis/lib/
lsp.c 149 long *ilsp=alloca(m*sizeof(*ilsp));
313 double *defl=alloca(sizeof(*defl)*(ord+1));
369 double *root=alloca(ord*sizeof(*root));
408 float *g1=alloca(sizeof(*g1)*(order2+1));
409 float *g2=alloca(sizeof(*g2)*(order2+1));
410 float *g1r=alloca(sizeof(*g1r)*(order2+1));
411 float *g2r=alloca(sizeof(*g2r)*(order2+1));
  /external/linux-kselftest/tools/testing/selftests/bpf/
test_lpm_map.c 176 data = alloca(keysize);
179 value = alloca(keysize + 1);
182 key = alloca(sizeof(*key) + keysize);
252 key_ipv4 = alloca(key_size_ipv4);
253 key_ipv6 = alloca(key_size_ipv6);
  /external/python/cpython2/Modules/_ctypes/libffi/src/x86/
ffi.c 195 h = alloca (zz + 1);
213 h = alloca (zz + 1);
214 h = alloca (zz + 1);
359 ecif.rvalue = alloca((cif->rtype->size + 0xF) & ~0xF);
366 ecif.rvalue = alloca(cif->rtype->size);
467 arg_area = (void**) alloca (cif->nargs * sizeof (void*));
496 arg_area = (void**) alloca (cif->nargs * sizeof (void*));
795 ecif.rvalue = alloca((cif->rtype->size + 0xF) & ~0xF);
802 ecif.rvalue = alloca(cif->rtype->size);
  /external/libopus/celt/
stack_alloc.h 47 # include <alloca.h>
108 # define ALLOC(var, size, type) var = ((type*)alloca(sizeof(type)*(size)))
  /external/ltp/testcases/kernel/sched/hyperthreading/ht_interrupt/
ht_utils.c 6 #include <alloca.h>
97 (char *)alloca(strlen(PROC_PATH) + sizeof("/cpuinfo"));
  /external/python/cpython2/Modules/_ctypes/libffi/src/arc/
ffi.c 178 ecif.rvalue = alloca (cif->rtype->size);
206 arg_area = (void **) alloca (cif->nargs * sizeof (void *));
  /external/python/cpython2/Modules/_ctypes/libffi/src/moxie/
ffi.c 141 ecif.rvalue = alloca(cif->rtype->size);
184 void **avalue = alloca (cif->nargs * sizeof(void *));
  /external/python/cpython2/Modules/_ctypes/libffi/src/nios2/
ffi.c 168 ecif.rvalue = alloca (cif->rtype->size);
208 void **parsed_args = alloca (cif->nargs * sizeof (void *));
  /external/python/cpython2/Modules/_ctypes/libffi/src/
raw_api.c 193 void **avalue = (void**) alloca (cif->nargs * sizeof (void*));
204 ffi_raw *raw = (ffi_raw*)alloca (ffi_raw_size (cif));

Completed in 1280 milliseconds

1 2 3 4 5 6 78 91011>>