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

12345678

/freebsd-10.0-release/crypto/openssh/
H A Dxmalloc.h20 void *xcalloc(size_t, size_t);
H A Dsandbox-null.c50 box = xcalloc(1, sizeof(*box));
H A Dauth-skey.c66 *prompts = xcalloc(*numprompts, sizeof(char *));
67 *echo_on = xcalloc(*numprompts, sizeof(u_int));
H A Dgroupaccess.c64 groups_bygid = xcalloc(ngroups, sizeof(*groups_bygid));
65 groups_byname = xcalloc(ngroups, sizeof(*groups_byname));
H A Dauth-bsdauth.c83 *prompts = xcalloc(*numprompts, sizeof(char *));
84 *echo_on = xcalloc(*numprompts, sizeof(u_int));
H A Dsandbox-darwin.c52 box = xcalloc(1, sizeof(*box));
/freebsd-10.0-release/cddl/contrib/opensolaris/tools/ctf/common/
H A Dmemory.h43 void *xcalloc(size_t);
H A Dmemory.c59 xcalloc(size_t size) function
/freebsd-10.0-release/usr.bin/xlint/common/
H A Dexterns.h48 extern void *xcalloc(size_t, size_t);
H A Dmem.c55 xcalloc(size_t n, size_t s) function
/freebsd-10.0-release/contrib/binutils/libiberty/
H A Dxmemdup.c1 /* xmemdup.c -- Duplicate a memory buffer, using xcalloc.
36 PTR output = xcalloc (1, alloc_size);
/freebsd-10.0-release/contrib/gcclibs/libiberty/
H A Dxmemdup.c1 /* xmemdup.c -- Duplicate a memory buffer, using xcalloc.
36 PTR output = xcalloc (1, alloc_size);
/freebsd-10.0-release/contrib/gcc/
H A Dggc-none.c52 return xcalloc (size, 1);
/freebsd-10.0-release/libexec/rtld-elf/
H A Dxmalloc.c36 xcalloc(size_t number, size_t size) function
/freebsd-10.0-release/contrib/diff/lib/
H A Dxalloc.h54 void *xcalloc (size_t n, size_t s);
82 # define XCALLOC(type, n) xcalloc (n, sizeof (type))
/freebsd-10.0-release/contrib/texinfo/lib/
H A Dxalloc.h51 void *xcalloc (size_t n, size_t s);
79 # define XCALLOC(type, n) xcalloc (n, sizeof (type))
/freebsd-10.0-release/gnu/usr.bin/grep/
H A Dxalloc.h60 void *xcalloc PARAMS ((size_t n, size_t s));
65 # define XCALLOC(Type, N_items) ((Type *) xcalloc (sizeof (Type), (N_items)))
H A Dxmalloc.c108 xcalloc (size_t n, size_t s) function
/freebsd-10.0-release/usr.bin/grep/regex/
H A Dxmalloc.h50 #define xcalloc(nmemb, size) xcalloc_impl(nmemb, size, __FILE__, __LINE__, \ macro
70 #define xcalloc(nmemb, size) calloc(nmemb, size) macro
/freebsd-10.0-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dst_parse.c151 tdp = xcalloc(sizeof (*tdp));
172 tdesc_t *ntdp = xcalloc(sizeof (*ntdp));
306 ntdp = xcalloc(sizeof (*ntdp));
318 ntdp = xcalloc(sizeof (*ntdp));
326 ntdp = xcalloc(sizeof (*ntdp));
363 tdp = xcalloc(sizeof (*tdp));
376 rtdp = xcalloc(sizeof (*rtdp));
668 *rtdp = xcalloc(sizeof (**rtdp));
676 *rtdp = xcalloc(sizeof (**rtdp));
680 (*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));
/freebsd-10.0-release/usr.bin/xlint/xlint/
H A Dxlint.c327 p1out = xcalloc(1, sizeof (char *));
328 p2in = xcalloc(1, sizeof (char *));
329 cflags = xcalloc(1, sizeof (char *));
330 lcflags = xcalloc(1, sizeof (char *));
331 l1flags = xcalloc(1, sizeof (char *));
332 l2flags = xcalloc(1, sizeof (char *));
333 l2libs = xcalloc(1, sizeof (char *));
334 deflibs = xcalloc(1, sizeof (char *));
335 libs = xcalloc(1, sizeof (char *));
336 libsrchpath = xcalloc(
[all...]
/freebsd-10.0-release/contrib/binutils/include/
H A Dlibiberty.h296 extern void *xcalloc (size_t, size_t) ATTRIBUTE_MALLOC;
324 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T)))
330 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T)))
337 #define XCNEWVAR(T, S) ((T *) xcalloc (1, (S)))
/freebsd-10.0-release/contrib/gcclibs/include/
H A Dlibiberty.h285 extern void *xcalloc (size_t, size_t) ATTRIBUTE_MALLOC;
313 #define XCNEW(T) ((T *) xcalloc (1, sizeof (T)))
319 #define XCNEWVEC(T, N) ((T *) xcalloc ((N), sizeof (T)))
326 #define XCNEWVAR(T, S) ((T *) xcalloc (1, (S)))
/freebsd-10.0-release/crypto/openssh/openbsd-compat/
H A Dbsd-cygwin_util.c86 p = xcalloc(WENV_SIZ + 1, sizeof(char *));

Completed in 268 milliseconds

12345678