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

12

/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/libvorbis/lib/
H A Dos.h57 # define alloca _alloca macro
67 # include <alloca.h>
/external/webkit/Tools/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/clang/include/clang/Basic/
H A DBuiltins.h22 // VC++ defines 'alloca' as an object-like macro, which interferes with our
24 #undef alloca macro
/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 ();
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...]
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/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dcodegen.ml15 (* Create an alloca instruction in the entry block of the function. This
149 * var = alloca double
170 (* Create an alloca for the variable in the entry block. *)
171 let alloca = create_entry_block_alloca the_function var_name in var
176 (* Store the value into the alloca. *)
177 ignore(build_store start_val alloca builder);
196 Hashtbl.add named_values var_name alloca;
214 (* Reload, increment, and restore the alloca. This handles the case where
216 let cur_var = build_load alloca var_name builder in
218 ignore(build_store next_var alloca builde
260 let alloca = create_entry_block_alloca the_function var_name in var
326 let alloca = create_entry_block_alloca the_function var_name in var
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dstringutils.h38 #define alloca _alloca macro
45 #include <alloca.h>
58 #define STACK_ARRAY(TYPE, LEN) static_cast<TYPE*>(::alloca((LEN)*sizeof(TYPE)))
/external/openssl/crypto/bn/
H A Dbn_exp.c119 # ifndef alloca
120 # define alloca _alloca macro
123 # ifndef alloca
124 # define alloca(s) __builtin_alloca((s)) macro
634 #ifdef alloca
636 powerbufFree = alloca(powerbufLen+MOD_EXP_CTIME_MIN_CACHE_LINE_WIDTH);
645 #ifdef alloca
/external/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp441 AllocaInst *alloca = local
444 ReloadOutputs.push_back(alloca);
445 params.push_back(alloca);
/external/openssl/crypto/
H A Dcryptlib.c781 #define alloca _alloca macro
813 name=(WCHAR *)alloca(len+sizeof(WCHAR));
858 fmtw = (WCHAR *)alloca(len_0*sizeof(WCHAR));
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_stdinc.h185 #if defined(HAVE_ALLOCA) && !defined(alloca)
187 # include <alloca.h>
189 # define alloca __builtin_alloca macro
192 # define alloca _alloca macro
200 #pragma alloca
202 void *alloca (unsigned);
204 char *alloca ();
208 #define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count))
/external/webkit/Tools/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/llvm/test/Bindings/Ocaml/
H A Dvmcore.ml1055 (* RUN: grep "%build_alloca = alloca i32" < %t.ll
1056 * RUN: grep "%build_array_alloca = alloca i32, i32 %P2" < %t.ll
1063 let alloca = build_alloca i32_type "build_alloca" b in var
1066 ignore(build_store p2 alloca b);
/external/elfutils/src/
H A Dldscript.c347 /* The parser invokes alloca or malloc; define the necessary symbols. */
354 # include <alloca.h> /* INFRINGES ON USER NAME SPACE */
359 # define alloca _alloca macro
361 # define YYSTACK_ALLOC alloca
379 invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
/external/gcc-demangle/
H A Dcp-demangle.c99 #pragma alloca
116 # include <alloca.h>
118 # ifndef alloca
120 # define alloca __builtin_alloca macro
122 extern char *alloca ();
124 # endif /* alloca */
4821 di.comps = alloca (di.num_comps * sizeof (*di.comps));
4822 di.subs = alloca (di.num_subs * sizeof (*di.subs));
5100 di.comps = alloca (di.num_comps * sizeof (*di.comps));
5101 di.subs = alloca (d
[all...]
/external/opencv/cxcore/include/
H A Dcxmisc.h121 /* get alloca declaration */
123 #undef alloca macro
124 #define alloca __builtin_alloca macro
130 #include <alloca.h>
138 #define cvStackAlloc(size) cvAlignPtr( alloca((size) + CV_MALLOC_ALIGN), CV_MALLOC_ALIGN )
/external/clang/lib/CodeGen/
H A DCGBlocks.cpp1104 llvm::AllocaInst *alloca = local
1106 alloca->setAlignment(align);
1108 Builder.CreateStore(capture.getConstant(), alloca, align);
1110 LocalDeclMap[variable] = alloca;
1921 // That's an alloca of the byref structure type.
/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/elfutils/libcpu/
H A Di386_parse.c450 /* The parser invokes alloca or malloc; define the necessary symbols. */
457 # include <alloca.h> /* INFRINGES ON USER NAME SPACE */
462 # define alloca _alloca macro
464 # define YYSTACK_ALLOC alloca
482 invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
/external/mesa3d/src/glsl/glcpp/
H A Dglcpp-parse.c398 /* The parser invokes alloca or malloc; define the necessary symbols. */
405 # include <alloca.h> /* INFRINGES ON USER NAME SPACE */
410 # define alloca _alloca macro
412 # define YYSTACK_ALLOC alloca
430 invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A Dglslang_tab.cpp456 /* The parser invokes alloca or malloc; define the necessary symbols. */
463 # include <alloca.h> /* INFRINGES ON USER NAME SPACE */
468 # define alloca _alloca macro
470 # define YYSTACK_ALLOC alloca
488 invoke alloca (N) if N exceeds 4096. Use a slightly smaller number

Completed in 676 milliseconds

12