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

/external/bluetooth/glib/glib/
H A Dgalloca.h38 # 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 (siz
[all...]
/external/oprofile/libpopt/
H A Dsystem.h41 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
/external/webkit/WebKitTools/android/flex-2.5.4a/MISC/Macintosh/
H A Dalloca.c2 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( siz
141 alloca (size) /* returns pointer to storage */ function
[all...]
/external/e2fsprogs/intl/
H A Dprintf.c25 # define alloca __builtin_alloca macro
30 # define alloca _alloca macro
33 # include <alloca.h>
36 #pragma alloca
38 # ifndef alloca
39 char *alloca ();
H A Dlocalealias.c38 # 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_le
[all...]
H A Ddcigettext.c33 # 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...]
H A Dloadmsgcat.c37 # 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 (le
[all...]
/external/bluetooth/glib/glib/gnulib/
H A Dvasnprintf.c69 /* For those losing systems which don't have 'alloca' we have to add
74 # define alloca(n) malloc (n) macro
274 (char *) alloca (7 + d.max_width_length + d.max_precision_length + 6);
/external/qemu/distrib/sdl-1.2.12/include/
H A DSDL_stdinc.h167 #if defined(HAVE_ALLOCA) && !defined(alloca)
169 # include <alloca.h>
171 # define alloca __builtin_alloca macro
174 # define alloca _alloca macro
180 #pragma alloca
182 void *alloca (unsigned);
184 char *alloca ();
188 #define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count))
/external/webkit/WebKitTools/android/flex-2.5.4a/MISC/
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
35 /* If someone has defined alloca as a macro,
36 there must be some other way alloca is supposed to work. */
37 #ifndef alloca
72 malloc. The Emacs executable needs alloca to call xmalloc, because
74 hand, the utilities in lib-src need alloca t
162 alloca (size) function
[all...]
H A Dparse.c41 /* Some versions of bison are broken in that they use alloca() but don't
48 #pragma alloca
54 /* The remainder of the alloca() cruft has to come after including flexdef.h,
59 # ifndef alloca
60 # define alloca __builtin_alloca macro
64 # include <alloca.h>
67 void *alloca ();
72 char *alloca ();
/external/bison/src/
H A Dparse-gram.c402 /* The parser invokes alloca or malloc; define the necessary symbols. */
409 # include <alloca.h> /* INFRINGES ON USER NAME SPACE */
414 # define alloca _alloca macro
416 # define YYSTACK_ALLOC alloca
434 invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
/external/clearsilver/util/regex/
H A Dregex.c24 #pragma alloca
224 /* Should we use malloc or alloca? If REGEX_MALLOC is not defined, we
225 use `alloca' instead of `malloc'. This is because using malloc in
230 Because we sometimes use alloca, some routines have to be macros,
231 not functions -- `alloca'-allocated space disappears at the end of the
242 /* Emacs already defines alloca, sometimes. */
243 #ifndef alloca
245 /* Make alloca work the best possible way. */ macro
247 #define alloca __builtin_alloca
250 #include <alloca
[all...]

Completed in 295 milliseconds