Searched refs:calloc (Results 1 - 25 of 998) sorted by relevance

1234567891011>>

/freebsd-11.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/vars/
H A Dtst.ucaller.ksh30 # of calloc(3C), and that it's implemented in terms of the ld.so.1
42 pid\$target:ld.so.1:calloc:entry
44 self->calloc = 1;
48 /self->calloc/
53 pid\$target:ld.so.1:calloc:return
54 /self->calloc/
56 self->calloc = 0;
/freebsd-11.0-release/contrib/ldns/compat/
H A Dcalloc.c8 void *calloc();
15 calloc(size_t num, size_t size) function
/freebsd-11.0-release/contrib/mdocml/
H A Dtest-ohash.c6 void *xmalloc(size_t sz, void *arg) { return calloc(1,sz); }
7 void *xcalloc(size_t nmemb, size_t sz, void *arg) { return calloc(nmemb,sz); }
16 i.calloc = xcalloc;
H A Dcompat_ohash.h30 void *(*calloc)(size_t, size_t, void *); member in struct:ohash_info
/freebsd-11.0-release/sbin/dhclient/
H A Dalloc.c53 rval = calloc(1, sizeof(struct string_list) + size);
64 rval = calloc(1, sizeof(struct hash_table) -
76 struct hash_bucket *rval = calloc(1, sizeof(struct hash_bucket));
H A Dtree.c53 pair foo = calloc(1, sizeof(*foo));
/freebsd-11.0-release/crypto/heimdal/lib/roken/
H A Decalloc.c42 * Like calloc but never fails.
48 void *tmp = calloc (number, size);
51 errx (1, "calloc %lu failed", (unsigned long)number * size);
/freebsd-11.0-release/contrib/gcclibs/libiberty/
H A Dcalloc.c0 /* calloc -- allocate memory which has been initialized to zero.
6 @deftypefn Supplemental void* calloc (size_t @var{nelem}, size_t @var{elsize})
23 calloc (size_t nelem, size_t elsize) function
/freebsd-11.0-release/contrib/binutils/libiberty/
H A Dcalloc.c0 /* calloc -- allocate memory which has been initialized to zero.
6 @deftypefn Supplemental void* calloc (size_t @var{nelem}, size_t @var{elsize})
23 calloc (size_t nelem, size_t elsize) function
/freebsd-11.0-release/contrib/ntp/sntp/unity/
H A Dunity_fixture_malloc_overrides.h12 #define calloc unity_calloc macro
/freebsd-11.0-release/contrib/compiler-rt/lib/asan/
H A Dasan_malloc_win.cc68 void *calloc(size_t nmemb, size_t size) { function
75 return calloc(nmemb, size);
80 return calloc(nmemb, size);
98 return calloc(n, elem_size);
149 __interception::OverrideFunction("calloc", (uptr)calloc);
150 __interception::OverrideFunction("_calloc_crt", (uptr)calloc);
/freebsd-11.0-release/gnu/usr.bin/grep/
H A Dxmalloc.c27 void *calloc ();
112 p = calloc (n, s);
/freebsd-11.0-release/contrib/ngatm/libngatm/
H A Dcccust.h46 #define CCZALLOC(S) (calloc(1, (S)))
/freebsd-11.0-release/contrib/gcclibs/libgomp/
H A Dalloc.c48 void *ret = calloc (1, size);
/freebsd-11.0-release/bin/setfacl/
H A Dutil.c41 ptr = calloc(1, size);
43 err(1, "calloc() failed");
/freebsd-11.0-release/contrib/dma/
H A Daliases_parse.y70 al = calloc(1, sizeof(*al));
89 it = calloc(1, sizeof(*it));
101 it = calloc(1, sizeof(*it));
/freebsd-11.0-release/usr.bin/grep/regex/
H A Dxmalloc.h56 #undef calloc macro
61 #define calloc USE_XCALLOC_INSTEAD_OF_CALLOC macro
70 #define xcalloc(nmemb, size) calloc(nmemb, size)
/freebsd-11.0-release/usr.sbin/bhyve/
H A Dbhyvegc.c22 gc = calloc(1, sizeof (struct bhyvegc));
24 gc_image = calloc(1, sizeof(struct bhyvegc_image));
31 gc_image->data = calloc(width * height, sizeof (uint32_t));
/freebsd-11.0-release/tools/tools/tscdrift/
H A Dtscdrift.c116 cpus = calloc(ncpu, sizeof(*cpus));
117 skew = calloc(ncpu, sizeof(*skew));
119 skew[i] = calloc(TESTS, sizeof(*skew[i]));
164 aveskew = calloc(ncpu, sizeof(*aveskew));
165 minskew = calloc(ncpu, sizeof(*minskew));
166 maxskew = calloc(ncpu, sizeof(*maxskew));
167 stddev = calloc(ncpu, sizeof(*stddev));
/freebsd-11.0-release/crypto/heimdal/lib/krb5/
H A Dcopy_host_realm.c60 *to = calloc (n, sizeof(**to));
/freebsd-11.0-release/contrib/netbsd-tests/kernel/
H A Dh_ps_strings2.c54 if ((argv = calloc(LEN, sizeof(*argv))) == NULL)
55 errx(1, "calloc failed");
/freebsd-11.0-release/contrib/ipfilter/lib/
H A Dsave_nothing.c34 ctx = calloc(1, sizeof(void *));
/freebsd-11.0-release/lib/libc/stdlib/
H A Dhcreate_r.c48 hsearch->entries = calloc(16, sizeof(ENTRY));
/freebsd-11.0-release/lib/libypclnt/
H A Dypclnt_new.c47 if ((ypclnt = calloc(1, sizeof *ypclnt)) == NULL)
/freebsd-11.0-release/crypto/heimdal/kdc/
H A Dheaders.h110 #define ALLOC(X) ((X) = calloc(1, sizeof(*(X))))
113 (X)->val = calloc((X)->len, sizeof(*(X)->val)); } while(0)

Completed in 192 milliseconds

1234567891011>>