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

1 2 3 4 5 6 7 891011>>

  /external/python/cpython2/Modules/_ctypes/libffi/src/vax/
ffi.c 176 ecif.rvalue = alloca (cif->rtype->size);
232 arg_area = (void **) alloca (cif->nargs * sizeof (void *));
  /external/python/cpython2/Modules/_ctypes/libffi_arm_wince/
ffi.c 173 ecif.rvalue = alloca(cif->rtype->size);
210 out_args = (void **) alloca(cif->nargs * sizeof (void *));
  /external/syslinux/core/elflink/
load_env32.c 19 #include <alloca.h>
209 argv = alloca((argc + 1) * sizeof(char *));
  /libcore/ojluni/src/main/native/
canonicalize_md.c 37 #include <alloca.h>
138 ix = (char **)alloca(nc * sizeof(char *));
  /development/ndk/platforms/android-21/include/
stdlib.h 35 #include <alloca.h>
  /development/ndk/platforms/android-9/include/
stdlib.h 41 #include <alloca.h>
  /external/ltp/testcases/kernel/sched/hyperthreading/ht_affinity/
ht_utils.c 6 #include <alloca.h>
  /external/ltp/testcases/kernel/sched/hyperthreading/ht_enabled/
ht_utils.c 6 #include <alloca.h>
  /external/python/cpython2/Modules/_ctypes/libffi/src/powerpc/
ffi.c 97 ecif.rvalue = alloca (cif->rtype->size);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xw32defs.h 14 # define alloca _alloca macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/
global.h 105 /** \brief alloca helper macro. */
106 #define __snd_alloca(ptr,type) do { *ptr = (type##_t *) alloca(type##_sizeof()); memset(*ptr, 0, type##_sizeof()); } while (0)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xw32defs.h 14 # define alloca _alloca macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/
global.h 105 /** \brief alloca helper macro. */
106 #define __snd_alloca(ptr,type) do { *ptr = (type##_t *) alloca(type##_sizeof()); memset(*ptr, 0, type##_sizeof()); } while (0)
  /external/e2fsprogs/intl/
dcigettext.c 33 # define alloca __builtin_alloca macro
38 # define alloca _alloca macro
41 # include <alloca.h>
44 #pragma alloca
46 # ifndef alloca
47 char *alloca ();
324 /* For those loosing systems which don't have `alloca' we have to add
357 # undef alloca macro
358 # define alloca(size) (malloc (size)) macro
360 #endif /* have alloca */
    [all...]
loadmsgcat.c 37 # undef alloca macro
38 # define alloca __builtin_alloca macro
43 # define alloca _alloca macro
46 # include <alloca.h>
49 #pragma alloca
51 # ifndef alloca
52 char *alloca ();
467 /* For those losing systems which don't have `alloca' we have to add
472 # define alloca(n) malloc (n) macro
813 charset = (char *) alloca (len + 1)
    [all...]
  /external/eigen/bench/btl/libs/BLAS/
blas_interface_impl.hh 79 int * ipiv = (int*)alloca(sizeof(int)*N);
104 int * ipiv = (int*)alloca(sizeof(int)*N);
105 int * jpiv = (int*)alloca(sizeof(int)*N);
  /external/python/cpython2/Modules/_ctypes/libffi/src/microblaze/
ffi.c 160 ecif.rvalue = alloca(cif->rtype->size);
190 char* stackclone = alloca(cif->bytes);
191 void** avalue = alloca(cif->nargs * sizeof(void*));
  /external/python/cpython2/Modules/_ctypes/libffi/src/tile/
ffi.c 147 ffi_sarg * const arg_mem = alloca(cif->bytes);
160 *argp++ = (intptr_t)(rvalue ? rvalue : alloca(cif->rtype->size));
290 void ** const avalue = alloca(cif->nargs * sizeof(void *));
  /external/python/cpython2/Modules/_ctypes/libffi_osx/x86/
x86-ffi_darwin.c 201 ecif.rvalue = alloca(cif->rtype->size);
250 arg_area = (void**) alloca (cif->nargs * sizeof (void*));
413 ecif.rvalue = alloca(cif->rtype->size);
  /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)))
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
malloc.h 181 #undef alloca macro
183 #define alloca(x) __builtin_alloca((x)) macro
185 #define alloca _alloca macro
  /toolchain/binutils/binutils-2.25/gas/
atof-generic.c 365 alloca (size_of_digits_in_chars);
482 power_binary_low = (LITTLENUM_TYPE *) alloca (size_of_power_in_chars);
483 temporary_binary_low = (LITTLENUM_TYPE *) alloca (size_of_power_in_chars);
  /toolchain/binutils/binutils-2.25/intl/
dcigettext.c 33 # define alloca __builtin_alloca macro
38 # define alloca _alloca macro
41 # include <alloca.h>
44 #pragma alloca
46 # ifndef alloca
47 char *alloca ();
323 /* For those loosing systems which don't have `alloca' we have to add
356 # undef alloca macro
357 # define alloca(size) (malloc (size)) macro
359 #endif /* have alloca */
    [all...]
loadmsgcat.c 37 # undef alloca macro
38 # define alloca __builtin_alloca macro
43 # define alloca _alloca macro
46 # include <alloca.h>
49 #pragma alloca
51 # ifndef alloca
52 char *alloca ();
467 /* For those losing systems which don't have `alloca' we have to add
472 # define alloca(n) malloc (n) macro
808 charset = (char *) alloca (len + 1)
    [all...]
  /external/libvorbis/lib/
psy.c 92 float *brute_buffer=alloca(n*sizeof(*brute_buffer));
452 long *posstack=alloca(n*sizeof(*posstack));
453 float *ampstack=alloca(n*sizeof(*ampstack));
550 float *N=alloca(n*sizeof(*N));
551 float *X=alloca(n*sizeof(*N));
552 float *XX=alloca(n*sizeof(*N));
553 float *Y=alloca(n*sizeof(*N));
554 float *XY=alloca(n*sizeof(*N));
704 float *work=alloca(n*sizeof(*work));
755 float *seed=alloca(sizeof(*seed)*p->total_octave_lines)
    [all...]

Completed in 690 milliseconds

1 2 3 4 5 6 7 891011>>