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

/illumos-gate/usr/src/head/
H A Dalloca.h57 #define alloca(x) __builtin_alloca(x) macro
63 extern void *alloca(size_t);
/illumos-gate/usr/src/boot/include/
H A Dstdlib.h240 * The alloca() function can't be implemented in C, and on some
242 * The GNU C compiler provides a built-in alloca() which we can use;
244 * incarnations of lint. On platforms where alloca() is not in libc,
249 #undef alloca /* some GNU bits try to get cute and define this on their own */ macro
250 #define alloca(sz) __builtin_alloca(sz) macro
252 void *alloca(size_t);
/illumos-gate/usr/src/cmd/spell/
H A Dmalloc.c74 static union store alloca; /* initial arena */ variable in typeref:union:store
75 static union store *allocb = &alloca; /*arena base*/
76 static union store *allocp = &alloca; /*search ptr*/
93 if(alloca.ptr!=0) /*C can't initialize union*/
174 if(alloca.ptr==0) /*C can't initialize union*/
175 alloca.ptr = &alloca;
243 if(alloca.ptr==0)
/illumos-gate/usr/src/lib/libast/common/vmalloc/
H A Dmalloc.c470 extern Void_t* alloca(size_t size) function
472 extern Void_t* alloca(size)
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
H A Ddeltat.c270 #ifdef alloca
272 #else /* alloca not defined */
275 #define alloca __builtin_alloca macro
279 #include <alloca.h>
286 instead, just don't use alloca. */
294 #pragma alloca
301 #define alloca __builtin_alloca
308 #endif /* alloca not defined */
312 #define YYSTACK_ALLOC alloca
/illumos-gate/usr/src/man/man3c/
H A DMakefile578 alloca.3c \
1921 alloca.3c := LINKSRC = malloc.3c

Completed in 96 milliseconds