Home
last modified time | relevance | path

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

/dragonfly/contrib/ncurses/ncurses/base/
H A Dlib_addch.c198 if ((WINDOW_EXT(win, addch_used) != 0) && in _nc_build_wch()
199 (WINDOW_EXT(win, addch_x) != x || in _nc_build_wch()
200 WINDOW_EXT(win, addch_y) != y)) { in _nc_build_wch()
202 WINDOW_EXT(win, addch_used) = 0; in _nc_build_wch()
205 WINDOW_EXT(win, addch_y), WINDOW_EXT(win, addch_x), in _nc_build_wch()
208 WINDOW_EXT(win, addch_x) = x; in _nc_build_wch()
209 WINDOW_EXT(win, addch_y) = y; in _nc_build_wch()
213 WINDOW_EXT(win, addch_used) += 1; in _nc_build_wch()
223 WINDOW_EXT(win, addch_used) = 0; in _nc_build_wch()
232 WINDOW_EXT(win, addch_used) = 0; in _nc_build_wch()
[all …]
H A Dlib_scroll.c122 if (WINDOW_EXT(win, addch_used) != 0) { in NCURSES_EXPORT()
123 int next = WINDOW_EXT(win, addch_y) + n; in NCURSES_EXPORT()
127 WINDOW_EXT(win, addch_y) = 0; in NCURSES_EXPORT()
130 WINDOW_EXT(win, addch_y), in NCURSES_EXPORT()
131 WINDOW_EXT(win, addch_x))); in NCURSES_EXPORT()
132 WINDOW_EXT(win, addch_y) = next; in NCURSES_EXPORT()
H A Dlib_insch.c84 WINDOW_EXT(win, addch_used) == 0 && in NCURSES_EXPORT()
/dragonfly/contrib/ncurses/ncurses/tinfo/
H A Dlib_data.c293 sp = WINDOW_EXT(win, screen); in _nc_screen_of()
/dragonfly/contrib/ncurses/ncurses/
H A Dcurses.priv.h1411 #define WINDOW_EXT(w,m) (((WINDOWLIST *)((void *)((char *)(w) - offsetof(WINDOWLIST, win))))->m) macro