HomeSort by: relevance | last modified time | path
    Searched refs:calloc (Results 1 - 25 of 353) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/common/lib/libppath/
ppath_malloc.c 42 return calloc(1, size);
  /src/lib/libppath/
ppath_malloc.c 42 return calloc(1, size);
  /src/sys/arch/ia64/stand/common/
calloc.c 1 /* $NetBSD: calloc.c,v 1.2 2009/03/18 16:00:12 cegger Exp $ */
9 calloc(u_int size1, u_int size2) function in typeref:typename:void *
  /src/usr.bin/vmstat/
drvstats.c 339 cur.time = calloc(ndrive, sizeof(struct timeval));
340 cur.wait = calloc(ndrive, sizeof(struct timeval));
341 cur.waitsum = calloc(ndrive, sizeof(struct timeval));
342 cur.busysum = calloc(ndrive, sizeof(struct timeval));
343 cur.timestamp = calloc(ndrive, sizeof(struct timeval));
344 cur.rxfer = calloc(ndrive, sizeof(u_int64_t));
345 cur.wxfer = calloc(ndrive, sizeof(u_int64_t));
346 cur.seek = calloc(ndrive, sizeof(u_int64_t));
347 cur.rbytes = calloc(ndrive, sizeof(u_int64_t));
348 cur.wbytes = calloc(ndrive, sizeof(u_int64_t))
    [all...]
  /src/lib/libbsdmalloc/
Makefile 12 CFLAGS+= -fno-builtin-calloc
  /src/bin/setfacl/
util.c 47 ptr = calloc(1, size);
49 err(1, "calloc() failed");
  /src/tests/kernel/
h_ps_strings2.c 54 if ((argv = calloc(LEN, sizeof(*argv))) == NULL)
55 errx(1, "calloc failed");
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_malloc_win.cc 84 void *calloc(size_t nmemb, size_t size) { function in typeref:typename:ALLOCATION_FUNCTION_ATTRIBUTE void *
91 return calloc(nmemb, size);
96 return calloc(nmemb, size);
101 return calloc(nmemb, size);
124 return calloc(n, elem_size);
233 TryToOverrideFunction("calloc", (uptr)calloc);
234 TryToOverrideFunction("_calloc_base", (uptr)calloc);
235 TryToOverrideFunction("_calloc_crt", (uptr)calloc);
asan_malloc_linux.cc 150 INTERCEPTOR(void*, calloc, uptr nmemb, uptr size) {
152 // Hack: dlsym calls calloc before REAL(calloc) is retrieved from dlsym.
246 void *(*calloc)(uptr n_elements, uptr elem_size); member in struct:MallocDebugK
253 void *(*calloc)(uptr n_elements, uptr elem_size); member in struct:MallocDebugL
266 WRAP(malloc), WRAP(free), WRAP(calloc),
270 WRAP(calloc), WRAP(free), WRAP(mallinfo),
  /src/sys/external/bsd/acpica/dist/os_specific/service_layers/
oswindir.c 205 SearchInfo = calloc (sizeof (EXTERNAL_FIND_INFO), 1);
213 FullWildcardSpec = calloc (
osunixdir.c 202 ExternalInfo = calloc (1, sizeof (EXTERNAL_FIND_INFO));
265 temp_str = calloc (str_len, 1);
  /src/common/include/rpc/
types.h 76 #define mem_alloc(bsize) calloc((size_t)1, bsize)
  /src/sys/external/bsd/compiler_rt/dist/lib/profile/
InstrProfilingValue.c 72 (ValueProfNode **)calloc(NumVSites, sizeof(ValueProfNode *));
113 CurrentVNode = (ValueProfNode *)calloc(1, sizeof(ValueProfNode));
146 (ValueProfData **)calloc(DataEnd - DataBegin, sizeof(void *));
163 VD = (ValueProfData *)calloc(VS, sizeof(uint8_t));
  /src/usr.bin/rsh/
getport.c 53 if ((sp = calloc(1, sizeof(*sp))) == NULL)
  /src/usr.sbin/sesd/srcs/
getobjmap.c 68 objp = calloc(nobj, sizeof (ses_object));
70 perror("calloc");
  /src/usr.sbin/user/
defs.h 34 if ((ptr = (type *) calloc(sizeof(type), size)) == NULL) { \
  /src/usr.bin/xlint/common/
mem.c 70 return not_null(calloc(n, s));
  /src/bin/csh/
alloc.c 88 Calloc(size_t s, size_t n)
92 if ((ptr = calloc(s, n)) == NULL) {
  /src/tests/lib/libc/stdlib/
h_getopt_long.c 88 (struct option *)calloc(sizeof(struct option),
91 err(1, "calloc");
92 longopt_flags = (int *)calloc(sizeof(int), maxnlongopts);
94 err(1, "calloc");
  /src/lib/libc/gen/
initgroups.c 67 groups = calloc((size_t)maxgroups, sizeof *groups);
  /src/share/examples/refuse/fanoutfs/
defs.h 45 if ((ptr = (type *) calloc(sizeof(type), (unsigned)(size))) == NULL) { \
  /src/share/examples/refuse/id3fs/
defs.h 45 if ((ptr = (type *) calloc(sizeof(type), (unsigned)(size))) == NULL) { \
  /src/share/examples/refuse/virtdir/
defs.h 45 if ((ptr = (type *) calloc(sizeof(type), (unsigned)(size))) == NULL) { \
  /src/tests/dev/md/
h_mdserv.c 73 md.md_addr = calloc(1, MDSIZE);
  /src/tests/fs/common/
fstest_tmpfs.c 64 args = calloc(1, sizeof(*args));

Completed in 47 milliseconds

1 2 3 4 5 6 7 8 91011>>