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

1 2 3 4 5 6 7

  /external/webkit/WebKitTools/android/flex-2.5.4a/MISC/Macintosh/
alloca.h 2 ** alloca.h
4 ** header for alloca()
9 pointer alloca(unsigned size);
alloca.c 2 alloca -- (mostly) portable public-domain implementation -- D A Gwyn
8 This implementation of the PWB library alloca() function,
20 track of all alloca()-allocated blocks, and reclaim any
25 As a special case, alloca(0) reclaims storage without
26 allocating any. It is a good idea to use alloca(0) in
30 static char SCCSid[] = "@(#)alloca.c 1.1"; /* for the "what" utility */
48 #ifndef alloca /* If compiling with GCC, this file's not needed. */
107 An "alloca header" is used to:
108 (a) chain together all alloca()ed blocks;
130 alloca( size ) returns a pointer to at least `size' bytes o
141 alloca (size) \/* returns pointer to storage *\/ function
    [all...]
  /external/bluetooth/glib/glib/
galloca.h 38 # undef alloca macro
39 # define alloca(size) __builtin_alloca (size) macro
41 /* a native and working alloca.h is there */
42 # include <alloca.h>
46 # define alloca _alloca macro
49 # pragma alloca
51 # ifndef alloca /* predefined by HP cc +Olibcalls */
53 char *alloca ();
55 # endif /* !alloca */
60 #define g_alloca(size) alloca (size
    [all...]
  /bionic/libc/include/
alloca.h 31 #define alloca(size) __builtin_alloca(size) macro
  /development/ndk/platforms/android-3/include/
alloca.h 31 #define alloca(size) __builtin_alloca(size) macro
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
alloca.h 31 #define alloca(size) __builtin_alloca(size) macro
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
alloca.h 31 #define alloca(size) __builtin_alloca(size) macro
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
alloca.h 31 #define alloca(size) __builtin_alloca(size) macro
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
alloca.h 31 #define alloca(size) __builtin_alloca(size) macro
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/
alloca.h 31 #define alloca(size) __builtin_alloca(size) macro
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
alloca.h 31 #define alloca(size) __builtin_alloca(size) macro
  /external/oprofile/libpopt/
system.h 41 void * alloca (size_t __size)
50 # include <alloca.h>
53 #pragma alloca
55 # ifndef alloca /* predefined by HP cc +Olibcalls */
56 char *alloca ();
61 #define alloca __builtin_alloca macro
findme.c 27 start = pathbuf = alloca(strlen(path) + 1);
poptconfig.c 20 poptItem item = alloca(sizeof(*item));
116 file = alloca(fileLength + 1);
127 dst = buf = alloca(fileLength + 1);
174 fn = alloca(strlen(home) + 20);
  /external/libffi/include/
ffi_common.h 21 //# define alloca __builtin_alloca /* ANDROID removed, clashes w/bionic */
22 # include <alloca.h> /* ANDROID added */
27 # include <alloca.h>
30 #pragma alloca
32 # ifndef alloca /* predefined by HP cc +Olibcalls */
33 char *alloca ();
  /system/core/libsysutils/src/
FrameworkClient.cpp 1 #include <alloca.h>
31 char *buffer = (char *) alloca(strlen(msg) + strlen(data) + 1);
SocketClient.cpp 1 #include <alloca.h>
37 buf = (char *) alloca(strlen(msg) + strlen(strerror(errno)) + 8);
40 buf = (char *) alloca(strlen(msg) + strlen("XXX "));
  /bionic/libc/unistd/
exec.c 42 #include <alloca.h>
58 argv = alloca((n + 1) * sizeof(*argv));
84 argv = alloca((n + 1) * sizeof(*argv));
111 argv = alloca((n + 1) * sizeof(*argv));
161 cur = alloca(len);
214 memp = alloca((cnt + 2) * sizeof(char *));
  /external/tremolo/Tremolo/
os.h 67 # include <alloca.h>
mapping0.c 133 alloca(sizeof(*pcmbundle)*vi->channels);
135 alloca(sizeof(*zerobundle)*vi->channels);
137 alloca(sizeof(*nonzero)*vi->channels);
139 alloca(sizeof(*floormemo)*vi->channels);
152 floormemo[i]=alloca(sizeof(*floormemo[i])*
157 floormemo[i]=alloca(sizeof(*floormemo[i])*
  /external/e2fsprogs/intl/
localealias.c 38 # undef alloca macro
39 # define alloca __builtin_alloca macro
44 # define alloca _alloca macro
47 # include <alloca.h>
50 #pragma alloca
52 # ifndef alloca
53 char *alloca ();
104 /* For those losing systems which don't have `alloca' we have to add
109 # define alloca(n) malloc (n) macro
224 full_fname = (char *) alloca (fname_len + sizeof aliasfile)
    [all...]
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 ();
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
libiberty.h 163 strings. Allocates memory using alloca. The arguments are
166 (libiberty_concat_ptr = (char *) alloca (concat_length ACONCAT_PARAMS + 1), \
323 #define XALLOCA(T) ((T *) alloca (sizeof (T)))
331 #define XALLOCAVEC(T, N) ((T *) alloca (sizeof (T) * (N)))
340 #define XALLOCAVAR(T, S) ((T *) alloca ((S)))
625 /* Drastically simplified alloca configurator. If we're using GCC,
626 we use __builtin_alloca; otherwise we use the C alloca. The C
627 alloca is always available. You can override GCC by defining
630 to call alloca(0). */
632 #undef alloca macro
634 # define alloca macro
642 # define alloca macro
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
libiberty.h 163 strings. Allocates memory using alloca. The arguments are
166 (libiberty_concat_ptr = (char *) alloca (concat_length ACONCAT_PARAMS + 1), \
323 #define XALLOCA(T) ((T *) alloca (sizeof (T)))
331 #define XALLOCAVEC(T, N) ((T *) alloca (sizeof (T) * (N)))
340 #define XALLOCAVAR(T, S) ((T *) alloca ((S)))
625 /* Drastically simplified alloca configurator. If we're using GCC,
626 we use __builtin_alloca; otherwise we use the C alloca. The C
627 alloca is always available. You can override GCC by defining
630 to call alloca(0). */
632 #undef alloca macro
634 # define alloca macro
642 # define alloca macro
    [all...]
  /external/speex/libspeex/
stack_alloc.h 43 # include <alloca.h>
108 #define ALLOC(var, size, type) var = alloca(sizeof(type)*(size))

Completed in 305 milliseconds

1 2 3 4 5 6 7