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

/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dalloca.in.h22 means there is a real alloca function. */
26 /* alloca (N) returns a pointer to N bytes of memory
28 Use of alloca should be avoided:
37 #ifndef alloca
39 # define alloca __builtin_alloca macro
41 # define alloca __alloca macro
44 # define alloca _alloca macro
46 # define alloca __ALLOCA macro
52 void *alloca (size_t);
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
26 #include <alloca.h>
45 /* If someone has defined alloca as a macro,
46 there must be some other way alloca is supposed to work. */
47 # ifndef alloca
120 /* An "alloca heade
151 alloca (size_t size) function
[all...]
H A Dregex_internal.h458 #include <alloca.h>
468 /* alloca is implemented with malloc, so just use malloc. */
470 # undef alloca macro
471 # define alloca(n) malloc (n) macro
/osnet-11/usr/src/lib/libast/common/vmalloc/
H A Dmalloc.c470 extern Void_t* alloca(size_t size) function
472 extern Void_t* alloca(size)

Completed in 35 milliseconds