Home
last modified time | relevance | path

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

/openbsd-src/lib/libcurses/base/
H A Dsafe_sprintf.c166 buffer = typeRealloc(char, length, buffer); in _nc_printf_length()
241 my_buffer = typeRealloc(char, my_length, my_buffer); in NCURSES_SP_NAME()
262 my_buffer = typeRealloc(char, my_length, my_buffer); in NCURSES_SP_NAME()
272 my_buffer = typeRealloc(char, my_length, my_buffer); in NCURSES_SP_NAME()
/openbsd-src/lib/libcurses/trace/
H A Dvisbuf.c140 mybuf[bufnum] = typeRealloc(char, NormalLen(len), mybuf[bufnum]); in _nc_visbuf2n()
213 mybuf[bufnum] = typeRealloc(char, WideLen(len), mybuf[bufnum]); in _nc_viswbuf2n()
273 mybuf = typeRealloc(wchar_t, mylen, mybuf); in _nc_viswibuf()
/openbsd-src/lib/libcurses/
H A Dnc_alloc.h121 #define typeRealloc(type,elts,ptr) (type *)_nc_doalloc(ptr, (size_t)(elts)*sizeof(type)) macro
H A Dcurses.priv.h1588 name = typeRealloc(type, size, name); \
/openbsd-src/lib/libcurses/tinfo/
H A Dlib_tgoto.c94 if ((result = typeRealloc(char, length, result)) == 0) { in tgoto_internal()
H A Dcomp_expand.c88 if ((buffer = typeRealloc(char, length = need, buffer)) == 0) in _nc_tic_expand()
H A Dobsolete.c92 bfr = typeRealloc(char, length, bfr); in _nc_memmove()
H A Dlib_tparm.c485 TPS(fmt_buff) = typeRealloc(char, TPS(fmt_size), TPS(fmt_buff)); in _nc_tparm_analyze()
627 TPS(fmt_buff) = typeRealloc(char, TPS(fmt_size), TPS(fmt_buff)); in tparm_setup()
H A Dcomp_scan.c236 result = typeRealloc(char, allocated, result); in next_char()
H A Dread_termcap.c265 #define DOALLOC(size) typeRealloc(char, size, record)
/openbsd-src/lib/libcurses/tty/
H A Dhardscroll.c206 int *new_oldnums = typeRealloc(int, in NCURSES_SP_NAME()
/openbsd-src/usr.bin/tic/
H A Dtic.c317 if ((namebuf = typeRealloc(char, have, namebuf)) == NULL) in put_translate()
319 if ((suffix = typeRealloc(char, have, suffix)) == NULL) in put_translate()
H A Ddump_entry.c125 dst->text = typeRealloc(char, dst->size, dst->text); in strncpy_DYN()