Searched refs:alloca (Results 51 - 75 of 176) sorted by relevance

12345678

/freebsd-13-stable/usr.sbin/jail/
H A Dcommand.c354 val = alloca(strlen(comstring->s) + 1);
367 argv = alloca((8 + argc) * sizeof(char *));
370 argv[1] = acs = alloca(cs - val + 1);
384 argv[3] = acs = alloca(cs - addr + 1);
398 argv[argc++] = acs = alloca(len);
411 val = alloca(strlen(comstring->s) + 1);
424 argv = alloca((8 + argc) * sizeof(char *));
427 argv[1] = acs = alloca(cs - val + 1);
447 argv[argc++] = acs = alloca(len);
458 argv = alloca(
[all...]
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/nfs/
H A Dtst.call3.d41 this->value = (int *)alloca(sizeof (int));
/freebsd-13-stable/lib/libc/gen/
H A Dexec.c67 argv = alloca((n + 1) * sizeof(*argv));
94 argv = alloca((n + 1) * sizeof(*argv));
121 argv = alloca((n + 1) * sizeof(*argv));
237 memp = alloca(MAX(3, cnt + 2) * sizeof(char *));
/freebsd-13-stable/lib/libusb/
H A Dlibusb_global_linux.h47 #include <alloca.h>
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/
H A Dtst.unpriv_funcs.ksh41 BEGIN { x = alloca(10);
42 bcopy("alloca\n", x, 7);
H A Dtst.func_access.ksh46 BEGIN { x = alloca(10); bcopy(`initname, x, 10); trace(stringof(x)); }
H A Dtst.kpriv.ksh50 CANTREAD3(bcopy, alloca(1), 1)
/freebsd-13-stable/contrib/ofed/libibumad/
H A Dsysfs.h82 path_to_sysctl(str, strlen(str) + 1, alloca(strlen(str) + 1))
/freebsd-13-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_safe_c_api.h49 #define KMP_ALLOCA alloca
/freebsd-13-stable/libexec/pppoed/
H A Dpppoed.c132 epath = (char *)alloca(strlen(iface) + 2);
227 data = (struct ngpppoe_init_data *)alloca(sizeof *data + plen);
232 spath = (char *)alloca(strlen(ngc->peerhook) + 3);
321 data = (struct ngpppoe_init_data *)alloca(sizeof *data + slen);
326 path = (char *)alloca(strlen(ngc.ourhook) + 3);
340 data = (struct ngpppoe_init_data *)alloca(sizeof *data + slen);
573 exec = (char *)alloca(sizeof DEFAULT_EXEC_PREFIX + strlen(label));
665 ptr = dbuf = alloca(sz * 2 + 1);
/freebsd-13-stable/contrib/llvm-project/clang/tools/driver/
H A Dcc1_main.cpp111 #include <alloca.h>
126 static_cast<volatile char *>(alloca(kTargetStack - Curr));
/freebsd-13-stable/lib/libjail/
H A Djail_getid.c74 jiov[1].iov_base = alloca(jiov[1].iov_len);
/freebsd-13-stable/sys/contrib/dev/acpica/compiler/
H A Ddtparser.y162 #undef alloca
163 #define alloca AslLocalAllocate
H A Dprparser.y162 #undef alloca
163 #define alloca AslLocalAllocate
/freebsd-13-stable/crypto/openssl/crypto/
H A Dcryptlib.c181 # define alloca _alloca macro
231 name = (WCHAR *)alloca(len + sizeof(WCHAR));
297 fmtw = (WCHAR *)alloca(len_0 * sizeof(WCHAR));
/freebsd-13-stable/crypto/heimdal/lib/com_err/
H A Dparse.c138 #if !defined(alloca) && !defined(HAVE_ALLOCA)
139 #define alloca(x) malloc(x) macro
274 /* The parser invokes alloca or malloc; define the necessary symbols. */
281 # include <alloca.h> /* INFRINGES ON USER NAME SPACE */
286 # define alloca _alloca macro
288 # define YYSTACK_ALLOC alloca
306 invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
/freebsd-13-stable/stand/ficl/
H A Dfileaccess.c40 char *filename = (char *)alloca(length + 1);
120 char *filename = (char *)alloca(length + 1);
136 to = (char *)alloca(length + 1);
143 from = (char *)alloca(length + 1);
157 char *filename = (char *)alloca(length + 1);
/freebsd-13-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_program.c34 #include <alloca.h>
419 fname = alloca(strlen(prp->pr_name) + 1 + i);
470 mname = alloca(strlen(prp->pr_name) + 1);
473 fname = alloca(strlen(prp->pr_name) + 1 + i);
556 info.dthi_pmname = alloca(strlen(pvp->pv_desc.dtvd_name) + 1);
559 info.dthi_pfname = alloca(strlen(pvp->pv_desc.dtvd_name) + 1 + i);
600 mfname = alloca(strlen(fname) + 1);
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/sodium/
H A Dutils.c26 # include <alloca.h>
27 # elif !defined(alloca)
29 # define alloca __builtin_alloca macro
31 # define alloca __alloca macro
34 # define alloca _alloca macro
40 void *alloca (size_t);
137 sodium_memzero(alloca(len), len);
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Derr.copyoutbadaddr.ksh46 ptr = alloca(sizeof (char *));
H A Derr.copyoutstrbadaddr.ksh45 ptr = alloca(sizeof (char *));
/freebsd-13-stable/lib/libcrypt/
H A Dcrypt-sha256.c154 cp = p_bytes = alloca(key_len);
172 cp = s_bytes = alloca(salt_len);
H A Dcrypt-sha512.c154 cp = p_bytes = alloca(key_len);
172 cp = s_bytes = alloca(salt_len);
/freebsd-13-stable/include/
H A Dstdlib.h250 * The alloca() function can't be implemented in C, and on some
252 * The GNU C compiler provides a built-in alloca() which we can use.
253 * On platforms where alloca() is not in libc, programs which use it
257 #undef alloca /* some GNU bits try to get cute and define this on their own */ macro
258 #define alloca(sz) __builtin_alloca(sz) macro
/freebsd-13-stable/sys/contrib/openzfs/lib/libzfs/os/freebsd/
H A Dlibzfs_compat.c75 cur = alloca(strlen(path) + 1);
121 memp = alloca((cnt + 2) * sizeof (char *));

Completed in 298 milliseconds

12345678