bin/ed/buf.c
66
REALLOC(sfbuf, sfbufsz, len + 1, NULL);
bin/ed/glbl.c
121
REALLOC(ocmd, ocmdsz, n + 1, ERR);
bin/ed/io.c
124
REALLOC(sbuf, sbufsz, i + 1, ERR);
bin/ed/io.c
128
REALLOC(sbuf, sbufsz, i + 2, ERR);
bin/ed/io.c
233
REALLOC(cvbuf, cvbufsz, l, NULL);
bin/ed/io.c
244
REALLOC(cvbuf, cvbufsz, l + n, NULL);
bin/ed/io.c
252
REALLOC(cvbuf, cvbufsz, l + 1, NULL);
bin/ed/io.c
271
REALLOC(ibuf, ibufsz, i + 2, ERR);
bin/ed/main.c
1000
REALLOC(buf, n, i + j, ERR);
bin/ed/main.c
1006
REALLOC(shcmd, shcmdsz, i + 1, ERR);
bin/ed/main.c
1079
REALLOC(buf, n, size + bp->len, ERR);
bin/ed/main.c
1083
REALLOC(buf, n, size + 2, ERR);
bin/ed/main.c
1309
REALLOC(file, filesz, PATH_MAX, NULL);
bin/ed/main.c
939
REALLOC(file, filesz, PATH_MAX, NULL);
bin/ed/main.c
964
REALLOC(buf, n, j + 1, ERR);
bin/ed/main.c
969
REALLOC(buf, n, i + 2, ERR);
bin/ed/main.c
976
REALLOC(buf, n, i + 1, ERR);
bin/ed/main.c
988
REALLOC(buf, n, i + shcmdi, ERR);
bin/ed/re.c
105
REALLOC(lhbuf, lhbufsz, len + 1, NULL);
bin/ed/sub.c
102
REALLOC(rhbuf, rhbufsz, i + 1, NULL);
bin/ed/sub.c
188
REALLOC(rbuf, rbufsz, off + i, ERR);
bin/ed/sub.c
198
REALLOC(rbuf, rbufsz, off + i, ERR);
bin/ed/sub.c
209
REALLOC(rbuf, rbufsz, off + i + 2, ERR);
bin/ed/sub.c
237
REALLOC(rbuf, rbufsz, off + k - j, ERR);
bin/ed/sub.c
244
REALLOC(rbuf, rbufsz, off + k - j, ERR);
bin/ed/sub.c
248
REALLOC(rbuf, rbufsz, off + 1, ERR);
bin/ed/sub.c
251
REALLOC(rbuf, rbufsz, off + 1, ERR);
bin/ed/sub.c
86
REALLOC(rhbuf, rhbufsz, i + 2, NULL);
games/atc/grammar.y
176
if (sp->num_beacons % REALLOC == 0) {
games/atc/grammar.y
178
sp->beacon = malloc((sp->num_beacons + REALLOC)
games/atc/grammar.y
182
(sp->num_beacons + REALLOC) *
games/atc/grammar.y
206
if (sp->num_exits % REALLOC == 0) {
games/atc/grammar.y
208
sp->exit = malloc((sp->num_exits + REALLOC) *
games/atc/grammar.y
212
REALLOC) * sizeof(EXIT));
games/atc/grammar.y
238
if (sp->num_airports % REALLOC == 0) {
games/atc/grammar.y
241
REALLOC) * sizeof(AIRPORT));
games/atc/grammar.y
244
(sp->num_airports + REALLOC) *
games/atc/grammar.y
268
if (sp->num_lines % REALLOC == 0) {
games/atc/grammar.y
270
sp->line = malloc((sp->num_lines + REALLOC) *
games/atc/grammar.y
274
REALLOC) * sizeof(LINE));