Searched defs:alloca (Results 1 - 4 of 4) sorted by relevance

/ndk/sources/host-tools/sed-4.2.1/lib/
H A Dalloca.in.h24 means there is a real alloca function. */
28 /* alloca (N) returns a pointer to N bytes of memory
30 Use of alloca should be avoided:
39 #ifndef alloca
41 # define alloca __builtin_alloca macro
43 # define alloca __alloca macro
46 # define alloca _alloca macro
48 # define alloca __ALLOCA macro
54 void *alloca (size_t);
H A Dalloca.c3 /* alloca.c -- allocate automatically reclaimed memory
6 This implementation of the PWB library alloca function,
17 track of all alloca-allocated blocks, and reclaim any
22 As a special case, alloca(0) reclaims storage without
23 allocating any. It is a good idea to use alloca(0) in
28 #include <alloca.h>
47 /* If someone has defined alloca as a macro,
48 there must be some other way alloca is supposed to work. */
49 # ifndef alloca
122 /* An "alloca heade
153 alloca (size_t size) function
[all...]
/ndk/sources/host-tools/make-3.81/
H A Dalloca.c0 /* alloca.c -- allocate automatically reclaimed memory
4 This implementation of the PWB library alloca function,
15 track of all alloca-allocated blocks, and reclaim any
20 As a special case, alloca(0) reclaims storage without
21 allocating any. It is a good idea to use alloca(0) in
42 /* If someone has defined alloca as a macro,
43 there must be some other way alloca is supposed to work. */
44 #ifndef alloca
81 malloc. The Emacs executable needs alloca to call xmalloc, because
83 hand, the utilities in lib-src need alloca t
171 alloca (unsigned size) function
[all...]
/ndk/sources/host-tools/make-3.81/glob/
H A Dglob.c20 #pragma alloca
213 # undef alloca macro
214 # define alloca(n) __builtin_alloca (n) macro
217 # include <alloca.h>
223 extern char *alloca ();
229 # define __alloca alloca

Completed in 86 milliseconds