bin/ksh/expand.h
45
#define Xclose(xs, xp) (char*) aresize((void*)(xs).beg, \
bin/ksh/expand.h
77
(x).beg = (void**) aresize((void*) (x).beg, \
bin/ksh/expand.h
88
#define XPclose(x) (void**) aresize((void*)(x).beg, \
bin/ksh/history.c
548
histlist = (char **)aresize(histlist, n*sizeof(char *), APERM);
bin/ksh/history.c
653
p = *histptr = (char *) aresize(*histptr, hlen + clen + 2, APERM);
bin/ksh/misc.c
130
xsp->beg = aresize(xsp->beg, xsp->len + 8, xsp->areap);
bin/ksh/misc.c
1306
ret = aresize(b, strlen(b) + 1, ATEMP);
bin/ksh/misc.c
1329
b = aresize(b, len, ATEMP);
bin/ksh/path.c
199
current_wd = aresize(current_wd, current_wd_size = len, APERM);
bin/ksh/proto.h
15
void * aresize ARGS((void *, size_t, Area *));
bin/ksh/shf.c
361
nbuf = (unsigned char *) aresize(shf->buf, shf->wbsize * 2,
bin/ksh/syn.c
407
iops = (struct ioword **) aresize((void*) iops,
bin/ksh/vi.c
1453
wbuf[0] = aresize(wbuf[0], wbuf_len, APERM);
bin/ksh/vi.c
1454
wbuf[1] = aresize(wbuf[1], wbuf_len, APERM);