Symbol: typeRealloc
lib/libcurses/base/safe_sprintf.c
166
buffer = typeRealloc(char, length, buffer);
lib/libcurses/base/safe_sprintf.c
241
my_buffer = typeRealloc(char, my_length, my_buffer);
lib/libcurses/base/safe_sprintf.c
262
my_buffer = typeRealloc(char, my_length, my_buffer);
lib/libcurses/base/safe_sprintf.c
272
my_buffer = typeRealloc(char, my_length, my_buffer);
lib/libcurses/curses.priv.h
1588
name = typeRealloc(type, size, name); \
lib/libcurses/tinfo/comp_expand.c
88
if ((buffer = typeRealloc(char, length = need, buffer)) == 0)
lib/libcurses/tinfo/comp_scan.c
236
result = typeRealloc(char, allocated, result);
lib/libcurses/tinfo/lib_tgoto.c
94
if ((result = typeRealloc(char, length, result)) == 0) {
lib/libcurses/tinfo/lib_tparm.c
485
TPS(fmt_buff) = typeRealloc(char, TPS(fmt_size), TPS(fmt_buff));
lib/libcurses/tinfo/lib_tparm.c
627
TPS(fmt_buff) = typeRealloc(char, TPS(fmt_size), TPS(fmt_buff));
lib/libcurses/tinfo/obsolete.c
92
bfr = typeRealloc(char, length, bfr);
lib/libcurses/tinfo/read_termcap.c
265
#define DOALLOC(size) typeRealloc(char, size, record)
lib/libcurses/trace/visbuf.c
140
mybuf[bufnum] = typeRealloc(char, NormalLen(len), mybuf[bufnum]);
lib/libcurses/trace/visbuf.c
213
mybuf[bufnum] = typeRealloc(char, WideLen(len), mybuf[bufnum]);
lib/libcurses/trace/visbuf.c
273
mybuf = typeRealloc(wchar_t, mylen, mybuf);
lib/libcurses/tty/hardscroll.c
206
int *new_oldnums = typeRealloc(int,
usr.bin/tic/dump_entry.c
125
dst->text = typeRealloc(char, dst->size, dst->text);
usr.bin/tic/tic.c
317
if ((namebuf = typeRealloc(char, have, namebuf)) == NULL)
usr.bin/tic/tic.c
319
if ((suffix = typeRealloc(char, have, suffix)) == NULL)