Symbol: erealloc
bin/ps/print.c
1187
buf = erealloc(buf, maxlen);
include/util.h
178
void *erealloc(void *, size_t);
sbin/ccdconfig/ccdconfig.c
395
argv = erealloc(argv, sizeof(char *) * (argc + 2));
sbin/efi/main.c
205
ev->data = erealloc(ev->data, ev->datasize + cnt);
sbin/efi/setvar.c
110
data = erealloc(data, datasize);
sbin/efi/utils.c
460
buf = erealloc(buf, bufsz);
sbin/fsck/fsck.c
506
s = erealloc(s, j);
sbin/fsck/fsck.c
529
argv = erealloc(argv, maxargc * sizeof(char *));
sbin/fsck_lfs/bufcache.c
239
bp->b_data = erealloc(bp->b_data, size);
sbin/fsck_lfs/inode.c
393
ninpsort = erealloc(inpsort,
sbin/fsck_lfs/lfs.c
1267
(*bpp)->b_data = erealloc((*bpp)->b_data, nsize);
sbin/fsck_lfs/setup.c
137
din_table = erealloc(din_table, len * sizeof(*din_table));
sbin/fsck_lfs/setup.c
138
statemap = erealloc(statemap, len * sizeof(char));
sbin/fsck_lfs/setup.c
139
typemap = erealloc(typemap, len * sizeof(char));
sbin/fsck_lfs/setup.c
140
lncntp = erealloc(lncntp, len * sizeof(int16_t));
sbin/mount/mount.c
699
nargv = erealloc(argv, (maxargc << 1) * sizeof(nargv));
sbin/mount_puffs/mount_puffs.c
121
*opts = erealloc(*opts, orig_len + 1 + strlen(opt) + 1);
sbin/mount_qemufwcfg/virtdir.c
137
tp->v = erealloc(tp->v, tp->size * sizeof(*tp->v));
tests/fs/puffs/h_dtfs/dtfs_subr.c
255
df->df_blocks = erealloc(df->df_blocks,
tests/lib/libutil/t_efun.c
107
ATF_TC(erealloc);
tests/lib/libutil/t_efun.c
108
ATF_TC_HEAD(erealloc, tc)
tests/lib/libutil/t_efun.c
113
ATF_TC_BODY(erealloc, tc)
tests/lib/libutil/t_efun.c
118
x = erealloc(NULL, -1);
tests/lib/libutil/t_efun.c
132
ATF_TP_ADD_TC(tp, erealloc);
tools/compat/compat_defs.h
377
void *erealloc(void *, size_t);
usr.bin/column/column.c
227
ncols = erealloc(cols, (maxcols +
usr.bin/column/column.c
229
nlens = erealloc(lens, (maxcols +
usr.bin/column/column.c
290
n = erealloc(list, (maxentry + DEFNUM) * sizeof(*n));
usr.bin/config/mkmakefile.c
421
attrbuf = erealloc(attrbuf, nattrs * sizeof(*attrbuf));
usr.bin/cut/cut.c
201
positions = erealloc(positions, newsize);
usr.bin/infocmp/infocmp.c
631
term->_userdefs = erealloc(term->_userdefs,
usr.bin/mail/format.c
70
*buf = erealloc(*buf, *bufsize);
usr.bin/mail/mime_codecs.c
371
buf = erealloc(buf, buflen);
usr.bin/mail/thread.c
585
erealloc(current_thread.t_msgtbl,
usr.bin/make/make_malloc.h
37
#define bmake_realloc(p, n) erealloc(p, n)
usr.bin/sed/compile.c
680
s->new = erealloc(text, size);
usr.bin/sed/compile.c
692
text = erealloc(text, asize);
usr.bin/sed/compile.c
852
y->multis = erealloc(y->multis,
usr.bin/sed/compile.c
896
text = erealloc(text, asize);
usr.bin/sed/compile.c
900
p = erealloc(text, size + 1);
usr.bin/sed/process.c
131
appends = erealloc(appends,
usr.bin/sed/process.c
224
appends = erealloc(appends,
usr.bin/sed/process.c
731
sp->space = sp->back = erealloc(sp->back, sp->blen); \
usr.bin/sed/process.c
775
sp->space = sp->back = erealloc(sp->back, sp->blen);
usr.bin/shuffle/shuffle.c
126
lines = erealloc(lines, (sizeof(char *) * maxlines));
usr.bin/sort/radix_sort.c
132
sp1 = erealloc(s, stack_size * sizeof *s);
usr.bin/sort/sort.c
178
fldtab = erealloc(fldtab, (fldtab_sz + 1) * sizeof(*fldtab));
usr.bin/sort/sort.c
423
return (erealloc(rec, size + sizeof(long) - 1));
usr.bin/sortinfo/sortinfo.c
65
slist = erealloc(slist, maxsections * sizeof(*slist));
usr.bin/sortinfo/sortinfo.c
80
s->lines = erealloc(s->lines, s->maxlines * sizeof(*s->lines));
usr.bin/tsort/tsort.c
161
b->b_buf = erealloc(NULL, b->b_bsize = 1024);
usr.bin/tsort/tsort.c
176
b->b_buf = erealloc(b->b_buf, bsize *= 2);
usr.bin/tsort/tsort.c
230
n1->n_arcs = erealloc(n1->n_arcs, bsize);
usr.bin/unexpand/unexpand.c
102
tabstops = erealloc(tabstops, maxstops);
usr.sbin/makefs/ffs.c
1075
newbuf = erealloc(dbuf->buf, dbuf->size + UFS_DIRBLKSIZ);
usr.sbin/makefs/ffs/buf.c
234
n = erealloc(bp->b_data, (size_t)size);
usr.sbin/makemandb/apropos-utils.c
156
mydst = erealloc(mydst, totallen);
usr.sbin/makemandb/apropos-utils.c
295
outbuf = erealloc(outbuf, total_out);
usr.sbin/makemandb/apropos-utils.c
307
outbuf = erealloc(outbuf, stream.total_out);
usr.sbin/makemandb/apropos.c
83
sections = erealloc(sections, sections_size * sizeof(*sections)); \
usr.sbin/makemandb/makemandb.c
2073
sbuff->data = erealloc(sbuff->data, sbuff->buflen);
usr.sbin/makemandb/makemandb.c
629
buf = erealloc(buf, *len);
usr.sbin/netgroup_mkdb/str.c
66
buf->s_str = erealloc(buf->s_str, buf->s_len + len +
usr.sbin/npf/npfctl/npf_bpf_comp.c
259
bp->bf_insns = erealloc(bp->bf_insns, reqlen);
usr.sbin/npf/npfctl/npf_bpf_comp.c
278
ctx->marks = erealloc(ctx->marks, reqlen);
usr.sbin/npf/npfd/npfd.c
165
buf = erealloc(buf, len = p + l + 1);
usr.sbin/puffs/mount_psshfs/subr.c
64
psn->dir = erealloc(psn->dir,
usr.sbin/tprof/ksyms.c
129
syms = erealloc(syms, sizeof(*syms) * nsyms);
usr.sbin/veriexecgen/veriexecgen.c
461
search_path = erealloc(search_path, sizeof(char *) *