Searched refs:typeRealloc (Results 1 - 19 of 19) sorted by relevance

/freebsd-10.2-release/contrib/ncurses/ncurses/base/
H A Dmemmove.c50 bfr = typeRealloc(char, length, bfr);
H A Dsafe_sprintf.c159 buffer = typeRealloc(char, length, buffer);
227 my_buffer = typeRealloc(char, my_length, my_buffer);
246 my_buffer = typeRealloc(char, my_length, my_buffer);
/freebsd-10.2-release/contrib/ncurses/ncurses/trace/
H A Dtrace_buf.c51 if ((MyList = typeRealloc(TRACEBUF, need, MyList)) != 0) {
60 MyList[bufnum].text = typeRealloc(char, want, MyList[bufnum].text);
H A Dvisbuf.c112 mybuf[bufnum] = typeRealloc(char, NormalLen(len), mybuf[bufnum]);
181 mybuf[bufnum] = typeRealloc(char, WideLen(len), mybuf[bufnum]);
236 mybuf = typeRealloc(wchar_t, mylen, mybuf);
H A Dvarargs.c169 MyBuffer = typeRealloc(char, MyLength, MyBuffer);
H A Dlib_tracedmp.c72 my_buffer = typeRealloc(char, my_length, my_buffer);
/freebsd-10.2-release/contrib/ncurses/include/
H A Dnc_alloc.h100 #define typeRealloc(type,elts,ptr) (type *)_nc_doalloc(ptr, (elts)*sizeof(type)) macro
/freebsd-10.2-release/contrib/ncurses/ncurses/tinfo/
H A Dalloc_ttype.c105 to->Booleans = typeRealloc(NCURSES_SBOOL, to->num_Booleans, to->Booleans);
119 to->Numbers = typeRealloc(short, to->num_Numbers, to->Numbers);
133 to->Strings = typeRealloc(char *, to->num_Strings, to->Strings);
302 tp->ext_Names = typeRealloc(char *, total, tp->ext_Names);
312 tp->Booleans = typeRealloc(NCURSES_SBOOL, tp->num_Booleans, tp->Booleans);
319 tp->Numbers = typeRealloc(short, tp->num_Numbers, tp->Numbers);
326 tp->Strings = typeRealloc(char *, tp->num_Strings, tp->Strings);
464 from->ext_Names = typeRealloc(char *, nb, from->ext_Names);
H A Dlib_tgoto.c91 if ((result = typeRealloc(char, length, result)) == 0) {
H A Dread_entry.c254 ptr->Booleans = typeRealloc(NCURSES_SBOOL, ptr->num_Booleans, ptr->Booleans);
255 ptr->Numbers = typeRealloc(short, ptr->num_Numbers, ptr->Numbers);
256 ptr->Strings = typeRealloc(char *, ptr->num_Strings, ptr->Strings);
H A Dcomp_expand.c74 if ((buffer = typeRealloc(char, length = need, buffer)) == 0)
H A Dparse_entry.c145 tp->Booleans = typeRealloc(NCURSES_SBOOL, tp->num_Booleans, tp->Booleans);
152 tp->Numbers = typeRealloc(short, tp->num_Numbers, tp->Numbers);
159 tp->Strings = typeRealloc(char *, tp->num_Strings, tp->Strings);
165 tp->ext_Names = typeRealloc(char *, actual, tp->ext_Names);
H A Dlib_tparm.c132 TPS(out_buff) = typeRealloc(char, TPS(out_size), TPS(out_buff));
352 TPS(fmt_buff) = typeRealloc(char, TPS(fmt_size), TPS(fmt_buff));
H A Dcomp_scan.c205 result = typeRealloc(char, allocated, result);
H A Dread_termcap.c259 #define DOALLOC(size) typeRealloc(char, size, record)
/freebsd-10.2-release/contrib/ncurses/ncurses/tty/
H A Dhardscroll.c197 int *new_oldnums = typeRealloc(int, screen_lines, oldnums);
/freebsd-10.2-release/contrib/ncurses/progs/
H A Dtoe.c186 cwd_buf = typeRealloc(char, cwd_len, cwd_buf);
H A Dtic.c289 namebuf = typeRealloc(char, have, namebuf);
290 suffix = typeRealloc(char, have, suffix);
H A Ddump_entry.c108 dst->text = typeRealloc(char, dst->size, dst->text);

Completed in 128 milliseconds