Symbol: REALLOC
bin/ed/buf.c
78
REALLOC(sfbuf, sfbufsz, len + 1, NULL);
bin/ed/glbl.c
129
REALLOC(ocmd, ocmdsz, n + 1, ERR);
bin/ed/io.c
130
REALLOC(sbuf, sbufsz, i + 1, ERR);
bin/ed/io.c
134
REALLOC(sbuf, sbufsz, i + 2, ERR);
bin/ed/io.c
234
REALLOC(cvbuf, cvbufsz, l, NULL);
bin/ed/io.c
245
REALLOC(cvbuf, cvbufsz, l + n, NULL);
bin/ed/io.c
253
REALLOC(cvbuf, cvbufsz, l + 1, NULL);
bin/ed/io.c
272
REALLOC(ibuf, ibufsz, i + 2, ERR);
bin/ed/main.c
1004
REALLOC(buf, n, i + 2, ERR);
bin/ed/main.c
1011
REALLOC(buf, n, i + 1, ERR);
bin/ed/main.c
1023
REALLOC(buf, n, i + shcmdi, ERR);
bin/ed/main.c
1035
REALLOC(buf, n, i + j, ERR);
bin/ed/main.c
1041
REALLOC(shcmd, shcmdsz, i + 1, ERR);
bin/ed/main.c
1114
REALLOC(buf, n, size + bp->len, ERR);
bin/ed/main.c
1118
REALLOC(buf, n, size + 2, ERR);
bin/ed/main.c
1344
REALLOC(file, filesz, MAXPATHLEN + 1, NULL);
bin/ed/main.c
974
REALLOC(file, filesz, MAXPATHLEN + 1, NULL);
bin/ed/main.c
999
REALLOC(buf, n, j + 1, ERR);
bin/ed/re.c
122
REALLOC(lhbuf, lhbufsz, len + 1, NULL);
bin/ed/sub.c
111
REALLOC(rhbuf, rhbufsz, i + 1, NULL);
bin/ed/sub.c
197
REALLOC(rbuf, rbufsz, off + i, ERR);
bin/ed/sub.c
207
REALLOC(rbuf, rbufsz, off + i, ERR);
bin/ed/sub.c
217
REALLOC(rbuf, rbufsz, off + i + 2, ERR);
bin/ed/sub.c
245
REALLOC(rbuf, rbufsz, off + k - j, ERR);
bin/ed/sub.c
252
REALLOC(rbuf, rbufsz, off + k - j, ERR);
bin/ed/sub.c
256
REALLOC(rbuf, rbufsz, off + 1, ERR);
bin/ed/sub.c
259
REALLOC(rbuf, rbufsz, off + 1, ERR);
bin/ed/sub.c
95
REALLOC(rhbuf, rhbufsz, i + 2, NULL);
games/atc/grammar.y
181
if (sp->num_beacons % REALLOC == 0) {
games/atc/grammar.y
183
sp->num_beacons + REALLOC, sizeof(BEACON)) != 0)
games/atc/grammar.y
205
if (sp->num_exits % REALLOC == 0) {
games/atc/grammar.y
208
REALLOC) * sizeof (EXIT));
games/atc/grammar.y
211
(sp->num_exits + REALLOC) *
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
271
REALLOC) * sizeof (LINE));
games/atc/grammar.y
274
(sp->num_lines + REALLOC) *
sys/dev/stbi/stb_image.c
2343
q = (char *) REALLOC(z->zout_start, limit);
sys/dev/stbi/stb_image.c
3046
p = (uint8 *) REALLOC(z->idata, idata_limit); if (p == NULL) return e("outofmem", "Out of memory");