Symbol: xcalloc
usr/src/cmd/backup/dump/dumpitime.c
132
idp = (struct idates *)xcalloc(1, sizeof (*idp));
usr/src/cmd/backup/dump/dumpitime.c
251
(struct idates *)xcalloc(1, sizeof (*itwalk));
usr/src/cmd/backup/dump/dumpmain.c
850
clrmap = (uchar_t *)xcalloc(msiz, sizeof (*clrmap));
usr/src/cmd/backup/dump/dumpmain.c
851
filmap = (uchar_t *)xcalloc(msiz, sizeof (*filmap));
usr/src/cmd/backup/dump/dumpmain.c
852
dirmap = (uchar_t *)xcalloc(msiz, sizeof (*dirmap));
usr/src/cmd/backup/dump/dumpmain.c
853
nodmap = (uchar_t *)xcalloc(msiz, sizeof (*nodmap));
usr/src/cmd/backup/dump/dumpmain.c
854
shamap = (uchar_t *)xcalloc(msiz, sizeof (*shamap));
usr/src/cmd/backup/dump/dumpmain.c
855
activemap = (uchar_t *)xcalloc(msiz, sizeof (*activemap));
usr/src/cmd/backup/dump/dumpmain.c
881
(struct cg *)xcalloc((uint_t)sblock->fs_cgsize, 1);
usr/src/cmd/backup/dump/dumponline.c
106
freeinodesc = (struct inodesc *)xcalloc(nused, sizeof (*freeinodesc));
usr/src/cmd/backup/dump/dumptraverse.c
170
new = (struct shcount *)xcalloc(1, sizeof (*new));
usr/src/cmd/backup/include/memutils.h
37
extern void *xcalloc(size_t, size_t);
usr/src/cmd/backup/include/memutils.h
41
extern void *xcalloc();
usr/src/cmd/backup/include/memutils.h
46
NOTE(ALIGNMENT(xcalloc, 8))
usr/src/cmd/cron/cron.c
2866
rp = xcalloc(1, sizeof (struct runinfo));
usr/src/cmd/cron/cron.c
3209
UsrGrps = xcalloc(nGroupsMax, sizeof (gid_t));
usr/src/cmd/cron/cron.c
3210
OrigGrps = xcalloc(nGroupsMax, sizeof (gid_t));
usr/src/cmd/cron/cron.c
837
u = xcalloc(1, sizeof (struct usr));
usr/src/cmd/cron/cron.h
119
extern void *xcalloc(size_t, size_t);
usr/src/cmd/csh/sh.c
1195
(tchar **)xcalloc((unsigned)(num+ 1), sizeof (tchar **));
usr/src/cmd/csh/sh.c
594
pv = (tchar **)xcalloc((unsigned)(i + 2), sizeof (tchar **));
usr/src/cmd/csh/sh.dir.c
155
dp = (struct directory *)xcalloc(sizeof (struct directory), 1);
usr/src/cmd/csh/sh.dir.c
401
dp = (struct directory *)xcalloc(sizeof (struct directory), 1);
usr/src/cmd/csh/sh.dir.c
70
dp = (struct directory *)xcalloc(sizeof (struct directory), 1);
usr/src/cmd/csh/sh.exec.c
322
xcalloc((uint_t)(len + 1), sizeof (char **));
usr/src/cmd/csh/sh.exp.c
603
struct wordent *new = (struct wordent *)xcalloc(1, sizeof *wdp);
usr/src/cmd/csh/sh.file.c
570
items = (tchar **)xcalloc(sizeof (items[1]),
usr/src/cmd/csh/sh.func.c
536
nwp = (struct whyle *)xcalloc(1, sizeof (*nwp));
usr/src/cmd/csh/sh.func.c
577
struct whyle *nwp = (struct whyle *)xcalloc(1, sizeof (*nwp));
usr/src/cmd/csh/sh.h
446
extern void *xcalloc(size_t, size_t);
usr/src/cmd/csh/sh.lex.c
1273
(tchar **)xcalloc((unsigned)(fblocks + 2), sizeof (tchar **));
usr/src/cmd/csh/sh.lex.c
1280
fbuf[fblocks] = (tchar *)xcalloc(BUFSIZ + MB_LEN_MAX,
usr/src/cmd/csh/sh.lex.c
1447
fbuf = (tchar **)xcalloc(2, sizeof (tchar **));
usr/src/cmd/csh/sh.lex.c
1449
fbuf[0] = (tchar *)xcalloc(BUFSIZ + MB_LEN_MAX, sizeof (tchar));
usr/src/cmd/csh/sh.lex.c
742
struct wordent *new = (struct wordent *)xcalloc(1, sizeof *wdp);
usr/src/cmd/csh/sh.misc.c
150
(tchar **)xcalloc((unsigned)(blklen(v) + 1),
usr/src/cmd/csh/sh.misc.c
191
(tchar **)xcalloc((unsigned)(blklen(up) + blklen(vp) + 1),
usr/src/cmd/csh/sh.misc.c
333
(tchar **)xcalloc((unsigned)(blklen(v) + 1),
usr/src/cmd/csh/sh.misc.c
425
(char **)xcalloc((unsigned)(blklen_(up) + blklen_(vp) + 1),
usr/src/cmd/csh/sh.parse.c
267
t = (struct command *)xcalloc(1, sizeof (*t));
usr/src/cmd/csh/sh.parse.c
274
t = (struct command *)xcalloc(1, sizeof (*t));
usr/src/cmd/csh/sh.parse.c
318
t = (struct command *)xcalloc(1, sizeof (*t));
usr/src/cmd/csh/sh.parse.c
359
t = (struct command *)xcalloc(1, sizeof (*t));
usr/src/cmd/csh/sh.parse.c
400
t = (struct command *)xcalloc(1, sizeof (*t));
usr/src/cmd/csh/sh.parse.c
443
t = (struct command *)xcalloc(1, sizeof (*t));
usr/src/cmd/csh/sh.parse.c
545
t = (struct command *)xcalloc(1, sizeof (*t));
usr/src/cmd/csh/sh.parse.c
546
av = (tchar **)xcalloc((unsigned)(n + 1), sizeof (tchar **));
usr/src/cmd/csh/sh.proc.c
424
pp = (struct process *)xcalloc(1, sizeof (struct process));
usr/src/cmd/sgs/m4/common/m4.c
459
hshtab = xcalloc(hshsize, sizeof (struct nlist *));
usr/src/cmd/sgs/m4/common/m4.c
460
callst = xcalloc(stksize/3+1, sizeof (struct call));
usr/src/cmd/sgs/m4/common/m4.c
461
Ap = argstk = xcalloc(stksize+3, sizeof (wchar_t *));
usr/src/cmd/sgs/m4/common/m4.c
462
ipstk[0] = ipflr = ip = ibuf = xcalloc(bufsize+1, sizeof (wchar_t));
usr/src/cmd/sgs/m4/common/m4.c
463
op = obuf = xcalloc(bufsize+1, sizeof (wchar_t));
usr/src/cmd/sgs/m4/common/m4.c
464
token = xcalloc(toksize+1, sizeof (wchar_t));
usr/src/cmd/sgs/m4/common/m4.c
493
np = xcalloc(1, sizeof (*np));
usr/src/cmd/sgs/m4/common/m4.c
498
cp = xcalloc((l = wcslen(val))+1, sizeof (*val));
usr/src/cmd/sgs/m4/common/m4.c
69
static void *xcalloc(size_t, size_t);
usr/src/lib/libdemangle/common/demangle_int.h
104
void *xcalloc(sysdem_ops_t *, size_t, size_t);
usr/src/lib/libdemangle/common/rust-v0puny.c
90
buf = xcalloc(st->rs_ops, bufalloc, sizeof (uint32_t));
usr/src/tools/ctf/common/memory.h
41
void *xcalloc(size_t);
usr/src/tools/ctf/stabs/common/fth_struct.c
433
mem = xcalloc(sizeof (fth_str_mem_t));
usr/src/tools/find_elf/find_elf.c
108
static void *xcalloc(size_t, size_t);
usr/src/tools/find_elf/find_elf.c
386
obj = xcalloc(1, sizeof (*obj));
usr/src/tools/find_elf/find_elf.c
626
newn = xcalloc(newamt, sizeof (name_t));