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

1234567891011>>

/freebsd-9.3-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-9.3-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));
H A Dprivsep.c30 if ((buf = calloc(1, sizeof(struct buf))) == NULL)
126 if ((medium = calloc(1, medium_len + 1)) == NULL)
137 if ((reason = calloc(1, reason_len + 1)) == NULL)
159 if ((filename = calloc(1, filename_len + 1)) == NULL)
171 calloc(1, servername_len + 1)) == NULL)
182 if ((prefix = calloc(1, prefix_len + 1)) == NULL)
200 calloc(1, optlen + 1);
/freebsd-9.3-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-9.3-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-9.3-release/crypto/heimdal/lib/roken/
H A Decalloc.c45 * Like calloc but never fails.
51 void *tmp = calloc (number, size);
54 errx (1, "calloc %lu failed", (unsigned long)number * size);
/freebsd-9.3-release/contrib/ntp/sntp/unity/
H A Dunity_fixture_malloc_overrides.h12 #define calloc unity_calloc macro
/freebsd-9.3-release/gnu/usr.bin/grep/
H A Dxmalloc.c27 void *calloc ();
112 p = calloc (n, s);
/freebsd-9.3-release/bin/setfacl/
H A Dutil.c41 ptr = calloc(1, size);
43 err(1, "calloc() failed");
/freebsd-9.3-release/contrib/gcclibs/libgomp/
H A Dalloc.c48 void *ret = calloc (1, size);
/freebsd-9.3-release/contrib/ngatm/libngatm/
H A Dcccust.h46 #define CCZALLOC(S) (calloc(1, (S)))
/freebsd-9.3-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-9.3-release/lib/libypclnt/
H A Dypclnt_new.c47 if ((ypclnt = calloc(1, sizeof *ypclnt)) == NULL)
/freebsd-9.3-release/usr.bin/xlint/common/
H A Dmem.c59 if ((p = calloc(n, s)) == NULL)
/freebsd-9.3-release/crypto/openssh/openbsd-compat/
H A Dbsd-poll.c61 if ((readfds = calloc(nmemb, sizeof(fd_mask))) == NULL ||
62 (writefds = calloc(nmemb, sizeof(fd_mask))) == NULL ||
63 (exceptfds = calloc(nmemb, sizeof(fd_mask))) == NULL) {
/freebsd-9.3-release/usr.sbin/bluetooth/sdpd/
H A Dprovider.c54 provider_p sd = calloc(1, sizeof(*sd));
55 provider_p bgd = calloc(1, sizeof(*bgd));
90 provider_p provider = calloc(1, sizeof(*provider));
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/zpool/
H A Dzpool_util.c43 if ((data = calloc(1, size)) == NULL) {
/freebsd-9.3-release/contrib/llvm/lib/Support/Windows/
H A DRWMutex.inc78 data_ = calloc(1, sizeof(SRWLOCK));
81 data_ = calloc(1, sizeof(CRITICAL_SECTION));
/freebsd-9.3-release/contrib/ncurses/menu/
H A Dm_new.c57 MENU *menu = (MENU *) calloc(1, sizeof(MENU));
/freebsd-9.3-release/lib/libc/include/
H A Dnss_tls.h67 *p = calloc(1, sizeof(**p)); \
/freebsd-9.3-release/lib/libc/resolv/
H A Dres_state.c77 statp = calloc(1, sizeof(*statp));
/freebsd-9.3-release/sbin/rcorder/
H A Dealloc.c108 * calloc, but die on error.
115 if ((ptr = calloc(nmemb, size)) == NULL)
/freebsd-9.3-release/sys/rpc/
H A Dtypes.h70 #define mem_alloc(bsize) calloc(1, bsize)
/freebsd-9.3-release/tools/tools/ath/ath_ee_9287_print/
H A Dmain.c55 eep = calloc(4096, sizeof(int16_t));

Completed in 169 milliseconds

1234567891011>>