Home
last modified time | relevance | path

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

/freebsd-head/contrib/ncurses/ncurses/trace/
HDtrace_buf.c43 #define MyList _nc_globals.tracebuf_ptr macro
54 if ((MyList = typeRealloc(TRACEBUF, need, MyList)) != 0) { in _nc_trace_alloc()
56 MyList[MySize++].text = 0; in _nc_trace_alloc()
60 if (MyList != 0) { in _nc_trace_alloc()
61 if (MyList[bufnum].text == 0 in _nc_trace_alloc()
62 || want > MyList[bufnum].size) { in _nc_trace_alloc()
63 MyList[bufnum].text = typeRealloc(char, want, MyList[bufnum].text); in _nc_trace_alloc()
64 if (MyList[bufnum].text != 0) in _nc_trace_alloc()
65 MyList[bufnum].size = want; in _nc_trace_alloc()
67 result = MyList[bufnum].text; in _nc_trace_alloc()
[all …]