Home
last modified time | relevance | path

Searched refs:typeRealloc (Results 1 – 20 of 20) sorted by relevance

/trueos/contrib/ncurses/ncurses/tinfo/
HDalloc_ttype.c105 to->Booleans = typeRealloc(NCURSES_SBOOL, to->num_Booleans, to->Booleans); in realign_data()
119 to->Numbers = typeRealloc(short, to->num_Numbers, to->Numbers); in realign_data()
133 to->Strings = typeRealloc(char *, to->num_Strings, to->Strings); in realign_data()
302 tp->ext_Names = typeRealloc(char *, total, tp->ext_Names); in _nc_ins_ext_name()
312 tp->Booleans = typeRealloc(NCURSES_SBOOL, tp->num_Booleans, tp->Booleans); in _nc_ins_ext_name()
319 tp->Numbers = typeRealloc(short, tp->num_Numbers, tp->Numbers); in _nc_ins_ext_name()
326 tp->Strings = typeRealloc(char *, tp->num_Strings, tp->Strings); in _nc_ins_ext_name()
464 from->ext_Names = typeRealloc(char *, nb, from->ext_Names); in _nc_align_termtype()
HDread_entry.c254 ptr->Booleans = typeRealloc(NCURSES_SBOOL, ptr->num_Booleans, ptr->Booleans); in _nc_read_termtype()
255 ptr->Numbers = typeRealloc(short, ptr->num_Numbers, ptr->Numbers); in _nc_read_termtype()
256 ptr->Strings = typeRealloc(char *, ptr->num_Strings, ptr->Strings); in _nc_read_termtype()
HDparse_entry.c145 tp->Booleans = typeRealloc(NCURSES_SBOOL, tp->num_Booleans, tp->Booleans); in _nc_extend_names()
152 tp->Numbers = typeRealloc(short, tp->num_Numbers, tp->Numbers); in _nc_extend_names()
159 tp->Strings = typeRealloc(char *, tp->num_Strings, tp->Strings); in _nc_extend_names()
165 tp->ext_Names = typeRealloc(char *, actual, tp->ext_Names); in _nc_extend_names()
HDlib_tgoto.c91 if ((result = typeRealloc(char, length, result)) == 0) { in tgoto_internal()
HDcomp_expand.c74 if ((buffer = typeRealloc(char, length = need, buffer)) == 0) in _nc_tic_expand()
HDlib_tparm.c132 TPS(out_buff) = typeRealloc(char, TPS(out_size), TPS(out_buff)); in get_space()
352 TPS(fmt_buff) = typeRealloc(char, TPS(fmt_size), TPS(fmt_buff)); in _nc_tparm_analyze()
HDcomp_scan.c205 result = typeRealloc(char, allocated, result); in next_char()
HDread_termcap.c259 #define DOALLOC(size) typeRealloc(char, size, record)
/trueos/contrib/ncurses/ncurses/base/
HDsafe_sprintf.c159 buffer = typeRealloc(char, length, buffer); in _nc_printf_length()
227 my_buffer = typeRealloc(char, my_length, my_buffer); in _nc_printf_string()
246 my_buffer = typeRealloc(char, my_length, my_buffer); in _nc_printf_string()
HDmemmove.c50 bfr = typeRealloc(char, length, bfr); in NCURSES_EXPORT()
/trueos/contrib/ncurses/ncurses/trace/
HDtrace_buf.c51 if ((MyList = typeRealloc(TRACEBUF, need, MyList)) != 0) { in _nc_trace_alloc()
60 MyList[bufnum].text = typeRealloc(char, want, MyList[bufnum].text); in _nc_trace_alloc()
HDvisbuf.c112 mybuf[bufnum] = typeRealloc(char, NormalLen(len), mybuf[bufnum]); in _nc_visbuf2n()
181 mybuf[bufnum] = typeRealloc(char, WideLen(len), mybuf[bufnum]); in _nc_viswbuf2n()
236 mybuf = typeRealloc(wchar_t, mylen, mybuf); in _nc_viswibuf()
HDvarargs.c169 MyBuffer = typeRealloc(char, MyLength, MyBuffer); in _nc_varargs()
HDlib_tracedmp.c72 my_buffer = typeRealloc(char, my_length, my_buffer); in NCURSES_EXPORT()
/trueos/contrib/ncurses/include/
HDnc_alloc.h100 #define typeRealloc(type,elts,ptr) (type *)_nc_doalloc(ptr, (elts)*sizeof(type)) macro
/trueos/contrib/ncurses/ncurses/tty/
HDhardscroll.c197 int *new_oldnums = typeRealloc(int, screen_lines, oldnums); in _nc_scroll_optimize()
/trueos/contrib/ncurses/progs/
HDtoe.c186 cwd_buf = typeRealloc(char, cwd_len, cwd_buf); in typelist()
HDtic.c289 namebuf = typeRealloc(char, have, namebuf); in put_translate()
290 suffix = typeRealloc(char, have, suffix); in put_translate()
HDdump_entry.c108 dst->text = typeRealloc(char, dst->size, dst->text); in strncpy_DYN()
/trueos/contrib/ncurses/
HDNEWS3130 + use typeRealloc() or typeMalloc() in preference to direct calls on
5491 + use macros typeMalloc, typeCalloc and typeRealloc consistently