Searched refs:xcalloc (Results 1 - 25 of 91) sorted by relevance

1234

/freebsd-13-stable/contrib/mandoc/
H A Dtest-ohash.c7 static void *xcalloc(size_t, size_t, void *);
17 xcalloc(size_t nmemb, size_t sz, void *arg) function
34 i.calloc = xcalloc;
/freebsd-13-stable/cddl/contrib/opensolaris/tools/ctf/common/
H A Dmemory.h43 void *xcalloc(size_t);
H A Dmemory.c59 xcalloc(size_t size) function
/freebsd-13-stable/usr.bin/diff/
H A Dxmalloc.h25 void *xcalloc(size_t, size_t);
H A Dxmalloc.c42 xcalloc(size_t nmemb, size_t size) function
48 err(2, "xcalloc: allocating %zu * %zu bytes", nmemb, size);
/freebsd-13-stable/crypto/openssh/
H A Dxmalloc.h21 void *xcalloc(size_t, size_t);
H A Dsandbox-null.c50 box = xcalloc(1, sizeof(*box));
H A Dauth-skey.c65 *prompts = xcalloc(*numprompts, sizeof(char *));
66 *echo_on = xcalloc(*numprompts, sizeof(u_int));
H A Dgroupaccess.c64 groups_bygid = xcalloc(ngroups, sizeof(*groups_bygid));
71 groups_byname = xcalloc(ngroups, sizeof(*groups_byname));
H A Dsandbox-pledge.c50 box = xcalloc(1, sizeof(*box));
H A Dauth-bsdauth.c90 *prompts = xcalloc(*numprompts, sizeof(char *));
91 *echo_on = xcalloc(*numprompts, sizeof(u_int));
H A Dsandbox-darwin.c53 box = xcalloc(1, sizeof(*box));
H A Dsandbox-rlimit.c53 box = xcalloc(1, sizeof(*box));
H A Dxmalloc.c53 xcalloc(size_t nmemb, size_t size) function
58 fatal("xcalloc: zero size");
60 fatal("xcalloc: nmemb * size > SIZE_MAX");
63 fatal("xcalloc: out of memory (allocating %zu bytes)",
H A Dsandbox-capsicum.c62 box = xcalloc(1, sizeof(*box));
H A Dsandbox-solaris.c50 box = xcalloc(1, sizeof(*box));
H A Dsftp-glob.c52 r = xcalloc(1, sizeof(*r));
/freebsd-13-stable/contrib/diff/lib/
H A Dxalloc.h54 void *xcalloc (size_t n, size_t s);
82 # define XCALLOC(type, n) xcalloc (n, sizeof (type))
H A Dxmalloc.c225 to xcalloc (N, S). */
237 xcalloc (size_t n, size_t s) function
/freebsd-13-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dst_parse.c151 tdp = xcalloc(sizeof (*tdp));
172 tdesc_t *ntdp = xcalloc(sizeof (*ntdp));
310 ntdp = xcalloc(sizeof (*ntdp));
322 ntdp = xcalloc(sizeof (*ntdp));
330 ntdp = xcalloc(sizeof (*ntdp));
367 tdp = xcalloc(sizeof (*tdp));
380 rtdp = xcalloc(sizeof (*rtdp));
672 *rtdp = xcalloc(sizeof (**rtdp));
680 *rtdp = xcalloc(sizeof (**rtdp));
684 (*rtdp)->t_fndef = xcalloc(sizeo
[all...]
H A Dfixup_tdescs.c89 p2 = xcalloc(sizeof (*p2));
94 p1 = xcalloc(sizeof (*p1));
138 ptr = xcalloc(sizeof (*ptr));
254 machcpu = xcalloc(sizeof (*machcpu));
H A Dfifo.c53 f = xcalloc(sizeof (fifo_t));
/freebsd-13-stable/libexec/rtld-elf/
H A Dxmalloc.c41 xcalloc(size_t number, size_t size) function
/freebsd-13-stable/crypto/openssh/openbsd-compat/
H A Dbsd-cygwin_util.c103 p = xcalloc(WENV_SIZ + 1, sizeof(char *));
/freebsd-13-stable/contrib/tcsh/
H A Dsh.parse.c262 t = xcalloc(1, sizeof(*t));
270 t = xcalloc(1, sizeof(*t));
313 t = xcalloc(1, sizeof(*t));
354 t = xcalloc(1, sizeof(*t));
394 t = xcalloc(1, sizeof(*t));
437 t = xcalloc(1, sizeof(*t));
541 t = xcalloc(1, sizeof(*t));
542 av = xcalloc(n + 1, sizeof(Char **));

Completed in 208 milliseconds

1234