Symbol: ecalloc
usr.bin/less/cmdbuf.c
669
ml = ecalloc(1, sizeof (struct mlist));
usr.bin/less/cmdbuf.c
918
tk_original = ecalloc(cp-word+1, sizeof (char));
usr.bin/less/command.c
762
struct ungot *ug = ecalloc(1, sizeof (struct ungot));
usr.bin/less/cvt.c
44
int *chpos = ecalloc(sizeof (int), len);
usr.bin/less/filename.c
167
newstr = r = ecalloc(len, sizeof (char));
usr.bin/less/filename.c
283
e = ecalloc(n+1, sizeof (char));
usr.bin/less/filename.c
423
gfilename = ecalloc(length, sizeof (char));
usr.bin/less/filename.c
45
name = p = ecalloc(strlen(str)+1, sizeof (char));
usr.bin/less/funcs.h
12
void *ecalloc(int, unsigned int);
usr.bin/less/ifile.c
109
p = ecalloc(1, sizeof (struct ifile));
usr.bin/less/line.c
83
linebuf = ecalloc(LINEBUF_SIZE, sizeof (char));
usr.bin/less/line.c
84
attr = ecalloc(LINEBUF_SIZE, sizeof (char));
usr.bin/less/option.c
572
*p_str = ecalloc(strlen(s)+1, sizeof (char));
usr.bin/less/pattern.c
32
comp = ecalloc(1, sizeof (regex_t));
usr.bin/less/pattern.c
56
cvt_pattern = ecalloc(1, cvt_length(strlen(pattern)));
usr.bin/less/position.c
119
table = ecalloc(sc_height, sizeof (off_t));
usr.bin/less/search.c
445
hl = ecalloc(1, sizeof (struct hilite));
usr.bin/less/search.c
462
hl = ecalloc(1, sizeof (struct hilite));
usr.bin/less/search.c
748
cline = ecalloc(1, cvt_len);
usr.bin/less/search.c
764
ecalloc(1, sizeof (struct hilite));
usr.bin/less/tags.c
95
tp = ecalloc(sizeof (struct tag), 1);
usr.bin/make/stats.c
170
statarray = ecalloc(STAT_NUMBER, sizeof(unsigned long));
usr.bin/signify/signify.c
656
struct ohash_info info = { 0, NULL, ecalloc, efree, NULL };
usr.sbin/config/config.h
373
void *ecalloc(size_t, size_t);
usr.sbin/config/hash.c
112
h = ecalloc(n, sizeof *h);
usr.sbin/makefs/cd9660.c
173
cd9660node *temp = ecalloc(1, sizeof(*temp));
usr.sbin/makefs/cd9660.c
1880
temp->node->inode = ecalloc(1, sizeof(*temp->node->inode));
usr.sbin/makefs/cd9660.c
1907
temp->node->inode = ecalloc(1, sizeof(*temp->node->inode));
usr.sbin/makefs/cd9660.c
239
iso9660_disk *diskStructure = ecalloc(1, sizeof(*diskStructure));
usr.sbin/makefs/cd9660.c
651
t->volumeDescriptorData = ecalloc(1, 2048);
usr.sbin/makefs/cd9660.c
661
t->volumeDescriptorData = ecalloc(1, 2048);
usr.sbin/makefs/cd9660/cd9660_eltorito.c
216
return ecalloc(1, sizeof(struct boot_catalog_entry));
usr.sbin/makefs/cd9660/cd9660_eltorito.c
97
new_image = ecalloc(1, sizeof(*new_image));
usr.sbin/makefs/cd9660/cd9660_write.c
151
buffer = ecalloc(path_table_sectors, diskStructure->sectorSize);
usr.sbin/makefs/ffs.c
134
ffs_opt_t *ffs_opts = ecalloc(1, sizeof(*ffs_opts));
usr.sbin/makefs/ffs.c
234
lp = ecalloc(1, sizeof(struct disklabel));
usr.sbin/makefs/ffs.c
505
buf = ecalloc(1, bufsize);
usr.sbin/makefs/ffs/buf.c
177
bp = ecalloc(1, sizeof(*bp));
usr.sbin/makefs/ffs/buf.h
97
#define pool_get(p, f) ecalloc(1, (p)->size)
usr.sbin/makefs/ffs/mkfs.c
395
space = ecalloc(1, size);
usr.sbin/makefs/ffs/mkfs.c
483
iobuf = ecalloc(1, iobufsize);
usr.sbin/makefs/makefs.c
310
return memcpy(ecalloc(i, sizeof(*o)), o, i * sizeof(*o));
usr.sbin/makefs/makefs.h
192
void *ecalloc(size_t, size_t);
usr.sbin/makefs/msdos.c
53
struct msdos_options *msdos_opt = ecalloc(1, sizeof(*msdos_opt));
usr.sbin/makefs/msdos/msdosfs_denode.c
101
ldep = ecalloc(1, sizeof(*ldep));
usr.sbin/makefs/msdos/msdosfs_vfsops.c
112
pmp = ecalloc(1, sizeof *pmp);
usr.sbin/makefs/msdos/msdosfs_vfsops.c
310
pmp->pm_inusemap = ecalloc(sizeof(*pmp->pm_inusemap),
usr.sbin/makefs/walk.c
199
cur = ecalloc(1, sizeof(*cur));
usr.sbin/makefs/walk.c
202
cur->inode = ecalloc(1, sizeof(*cur->inode));
usr.sbin/makefs/walk.c
335
htable = ecalloc(htmask+1, sizeof(*htable));