Home
last modified time | relevance | path

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

/trueos/contrib/ncurses/ncurses/base/
HDlib_addch.c192 char *buffer = WINDOW_EXT(win, addch_work); in _nc_build_wch()
199 if ((WINDOW_EXT(win, addch_used) != 0) && in _nc_build_wch()
200 (WINDOW_EXT(win, addch_x) != x || in _nc_build_wch()
201 WINDOW_EXT(win, addch_y) != y)) { in _nc_build_wch()
203 WINDOW_EXT(win, addch_used) = 0; in _nc_build_wch()
206 WINDOW_EXT(win, addch_y), WINDOW_EXT(win, addch_x), in _nc_build_wch()
209 WINDOW_EXT(win, addch_x) = x; in _nc_build_wch()
210 WINDOW_EXT(win, addch_y) = y; in _nc_build_wch()
213 buffer[WINDOW_EXT(win, addch_used)] = (char) CharOf(CHDEREF(ch)); in _nc_build_wch()
214 WINDOW_EXT(win, addch_used) += 1; in _nc_build_wch()
[all …]
HDlib_scroll.c119 if (WINDOW_EXT(win, addch_used) != 0) { in NCURSES_EXPORT()
120 int next = WINDOW_EXT(win, addch_y) + n; in NCURSES_EXPORT()
124 WINDOW_EXT(win, addch_y) = 0; in NCURSES_EXPORT()
127 WINDOW_EXT(win, addch_y), in NCURSES_EXPORT()
128 WINDOW_EXT(win, addch_x))); in NCURSES_EXPORT()
129 WINDOW_EXT(win, addch_y) = next; in NCURSES_EXPORT()
HDlib_insch.c76 WINDOW_EXT(win, addch_used) == 0 && in NCURSES_EXPORT()
/trueos/contrib/ncurses/ncurses/
HDcurses.priv.h944 #define WINDOW_EXT(win,field) (((WINDOWLIST *)(win))->field) macro
/trueos/contrib/ncurses/form/
HDfrm_driver.c3984 if (WINDOW_EXT(form->w, addch_used) == 0) in Data_Entry()