Home
last modified time | relevance | path

Searched refs:alloca (Results 1 – 25 of 112) sorted by relevance

12345

/external/bluetooth/glib/glib/
Dgalloca.h38 # undef alloca
39 # define alloca(size) __builtin_alloca (size) macro
46 # define alloca _alloca macro
49 # pragma alloca
51 # ifndef alloca /* predefined by HP cc +Olibcalls */
53 char *alloca ();
60 #define g_alloca(size) alloca (size)
/external/oprofile/libpopt/
Dsystem.h41 void * alloca (size_t __size)
53 #pragma alloca
55 # ifndef alloca /* predefined by HP cc +Olibcalls */
56 char *alloca ();
61 #define alloca __builtin_alloca macro
Dpoptconfig.c20 poptItem item = alloca(sizeof(*item)); in configLine()
116 file = alloca(fileLength + 1); in poptReadConfigFile()
127 dst = buf = alloca(fileLength + 1); in poptReadConfigFile()
174 fn = alloca(strlen(home) + 20); in poptReadDefaultConfig()
/external/e2fsprogs/intl/
Dlocalealias.c38 # undef alloca
39 # define alloca __builtin_alloca macro
44 # define alloca _alloca macro
50 #pragma alloca
52 # ifndef alloca
53 char *alloca ();
109 # define alloca(n) malloc (n) macro
224 full_fname = (char *) alloca (fname_len + sizeof aliasfile); in read_alias_file()
Dprintf.c25 # define alloca __builtin_alloca macro
30 # define alloca _alloca macro
36 #pragma alloca
38 # ifndef alloca
39 char *alloca ();
Ddcigettext.c33 # define alloca __builtin_alloca macro
38 # define alloca _alloca macro
44 #pragma alloca
46 # ifndef alloca
47 char *alloca ();
356 # undef alloca
357 # define alloca(size) (malloc (size)) macro
482 alloca (offsetof (struct known_translation_t, msgid) + msgid_len); in DCIGETTEXT()
540 dirname = (char *) alloca (path_max + dirname_len); in DCIGETTEXT()
565 xdomainname = (char *) alloca (strlen (categoryname) in DCIGETTEXT()
[all …]
Dloadmsgcat.c37 # undef alloca
38 # define alloca __builtin_alloca macro
43 # define alloca _alloca macro
49 #pragma alloca
51 # ifndef alloca
52 char *alloca ();
472 # define alloca(n) malloc (n) macro
813 charset = (char *) alloca (len + 1); in _nl_init_domain_conv()
863 tmp = (char *) alloca (len + 10 + 1); in _nl_init_domain_conv()
1093 alloca (n_sysdep_segments * sizeof (const char *)); in _nl_load_domain()
/external/tremolo/Tremolo/
Dmapping0.c133 alloca(sizeof(*pcmbundle)*vi->channels); in mapping_inverse()
135 alloca(sizeof(*zerobundle)*vi->channels); in mapping_inverse()
137 alloca(sizeof(*nonzero)*vi->channels); in mapping_inverse()
139 alloca(sizeof(*floormemo)*vi->channels); in mapping_inverse()
152 floormemo[i]=alloca(sizeof(*floormemo[i])* in mapping_inverse()
157 floormemo[i]=alloca(sizeof(*floormemo[i])* in mapping_inverse()
Dres012.c129 char **partword=(char **)alloca(ch*sizeof(*partword)); in res_inverse()
131 partword[j]=(char *)alloca(partwords*partitions_per_word* in res_inverse()
195 (char *)alloca(partwords*partitions_per_word*sizeof(*partword)); in res_inverse()
/external/webkit/WebKitTools/android/flex-2.5.4a/MISC/Amiga/
DSMakefile73 $(libdir)/alloca.o $(libdir)/xmalloc.o
139 alloca.o: alloca.c
140 $(CC) $(CPPFLAGS) $(CFLAGS) define=xmalloc=yy_flex_xmalloc alloca.c
142 alloca.c: $(srcdir)/MISC/alloca.c
143 @delete alloca.c
144 copy $(srcdir)/MISC/alloca.c .
192 alloca.c lex.yy.(c|cc) $(FLEXLIB)
Dparse.ych5 char *alloca ();
7 char *alloca(unsigned int);
/external/libffi/include/
Dffi_common.h30 #pragma alloca
32 # ifndef alloca /* predefined by HP cc +Olibcalls */
33 char *alloca ();
/external/webkit/WebKitTools/android/flex-2.5.4a/MISC/VMS/
Ddescrip.mms47 ALLOCA = ,[]alloca.obj # note leading comma
198 []alloca.obj : alloca.c
199 $(CC)$(CFLAGS)/Define=("STACK_DIRECTION=-1","xmalloc=yy_flex_xmalloc") alloca.c
201 alloca.c : $(MISCDIR)alloca.c
202 $(COPY) $(MISCDIR)alloca.c alloca.c
291 @- if f$search("alloca.c").nes."" .and.-
292 f$search("$(MISCDIR)alloca.c").nes."" then $(REMOVE) alloca.c;*
/external/qemu/distrib/sdl-1.2.12/include/
DSDL_stdinc.h167 #if defined(HAVE_ALLOCA) && !defined(alloca)
171 # define alloca __builtin_alloca
174 # define alloca _alloca
180 #pragma alloca
182 void *alloca (unsigned);
184 char *alloca ();
188 #define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count))
/external/libffi/
Dfficonfig.h.in4 systems. This function is required for `alloca.c' support on those systems.
8 /* Define to 1 if using `alloca.c'. */
23 /* Define to 1 if you have `alloca', as a function or macro. */
26 /* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
124 /* If using the C implementation of alloca, define if you know the
/external/libffi/src/mips/
Dffi.c516 ecif.rvalue = alloca(cif->rtype->size); in ffi_call()
541 rvalue_copy = alloca(16); in ffi_call()
667 avalue = alloca (cif->nargs * sizeof (ffi_arg)); in ffi_closure_mips_inner_O32()
668 avaluep = alloca (cif->nargs * sizeof (ffi_arg)); in ffi_closure_mips_inner_O32()
820 avalue = alloca (cif->nargs * sizeof (ffi_arg)); in ffi_closure_mips_inner_N32()
821 avaluep = alloca (cif->nargs * sizeof (ffi_arg)); in ffi_closure_mips_inner_N32()
902 avaluep[i] = alloca(arg_types[i]->size); in ffi_closure_mips_inner_N32()
/external/webkit/WebKitTools/android/flex-2.5.4a/
Dparse.y46 #pragma alloca
57 # ifndef alloca
58 # define alloca __builtin_alloca macro
65 void *alloca ();
70 char *alloca ();
/external/libffi/src/alpha/
Dffi.c88 rvalue = alloca(cif->rtype->size); in ffi_call()
92 argp = stack = alloca(cif->bytes + 4*FFI_SIZEOF_ARG); in ffi_call()
213 avalue = alloca(cif->nargs * sizeof(void *)); in ffi_closure_osf_inner()
/external/elfutils/libdw/
Ddwarf_getsrclines.c44 new_line = (struct linelist *) alloca (sizeof (struct linelist)); \
188 (struct dirlist *) alloca (sizeof (*new_dir)); in dwarf_getsrclines()
205 = (struct dirlist **) alloca (ndirlist * sizeof (*dirarray)); in dwarf_getsrclines()
231 (struct filelist *) alloca (sizeof (*new_file)); in dwarf_getsrclines()
405 (struct filelist *) alloca (sizeof (*new_file)); in dwarf_getsrclines()
/external/webkit/WebKitTools/android/flex-2.5.4a/MISC/Macintosh/
Dalloca.c48 #ifndef alloca /* If compiling with GCC, this file's not needed. */
141 alloca (size) /* returns pointer to storage */ in alloca() function
/external/libffi/src/x86/
Dffi64.c362 rvalue = alloca (cif->rtype->size); in ffi_call()
365 stack = alloca (sizeof (struct register_args) + cif->bytes + 4*8); in ffi_call()
478 avalue = alloca(cif->nargs * sizeof(void *)); in ffi_closure_unix64_inner()
551 char *a = alloca (16); in ffi_closure_unix64_inner()
Dffi.c204 ecif.rvalue = alloca(cif->rtype->size); in ffi_call()
257 arg_area = (void**) alloca (cif->nargs * sizeof (void*));
449 ecif.rvalue = alloca(cif->rtype->size); in ffi_raw_call()
/external/libffi/src/ia64/
Dffi.c286 rvalue = alloca (cif->rtype->size); in ffi_call()
289 stack = alloca (cif->bytes); in ffi_call()
455 avalue = alloca (avn * sizeof (void *)); in ffi_closure_unix_inner()
546 void *addr = alloca (size); in ffi_closure_unix_inner()
/external/libffi/src/sparc/
Dffi.c383 rval = alloca(64); in ffi_call()
388 ecif.rvalue = alloca(cif->rtype->size); in ffi_call()
484 avalue = alloca(cif->nargs * sizeof(void *)); in ffi_closure_sparc_inner_v8()
549 avalue = alloca(cif->nargs * sizeof(void *)); in ffi_closure_sparc_inner_v9()
/external/bison/
DOChangeLog46 * src/bison.simple: Use malloc, if using alloca is troublesome.
59 * src/bison.simple (alloca) [__hpux]: Always define as
68 * src/bison.simple (alloca) [__hpux]: Include alloca.h (right for
69 HPUX 10) instead of declaring alloca (right for HPUX 9).
106 * src/bison.simple [__sun && __i386]: Include alloca.h.
183 * src/conflicts.c (resolve_sr_conflict): Remove use of alloca.
329 * src/conflicts.c (alloca): #undef before defining.
375 * src/bison.simple [__hpux] (alloca): Don't specify arg types.
446 * src/bison.simple [__hpux, not __GNUC__]: Declare alloca.
461 alloca call.
[all …]

12345