Searched refs:nwin (Results 1 – 3 of 3) sorted by relevance
| /mirbsd/src/lib/libncurses/src/ncurses/base/ |
| D | lib_screen.c | 42 WINDOW tmp, *nwin; in NCURSES_EXPORT() local 53 nwin = newpad(tmp._maxy + 1, tmp._maxx + 1); in NCURSES_EXPORT() 55 nwin = newwin(tmp._maxy + 1, tmp._maxx + 1, 0, 0); in NCURSES_EXPORT() 63 if (nwin != 0) { in NCURSES_EXPORT() 64 nwin->_curx = tmp._curx; in NCURSES_EXPORT() 65 nwin->_cury = tmp._cury; in NCURSES_EXPORT() 66 nwin->_maxy = tmp._maxy; in NCURSES_EXPORT() 67 nwin->_maxx = tmp._maxx; in NCURSES_EXPORT() 68 nwin->_begy = tmp._begy; in NCURSES_EXPORT() 69 nwin->_begx = tmp._begx; in NCURSES_EXPORT() [all …]
|
| D | lib_window.c | 181 WINDOW *nwin = 0; in dupwin() local 190 nwin = newpad(win->_maxy + 1, in dupwin() 193 nwin = newwin(win->_maxy + 1, in dupwin() 199 if (nwin != 0) { in dupwin() 201 nwin->_curx = win->_curx; in dupwin() 202 nwin->_cury = win->_cury; in dupwin() 203 nwin->_maxy = win->_maxy; in dupwin() 204 nwin->_maxx = win->_maxx; in dupwin() 205 nwin->_begy = win->_begy; in dupwin() 206 nwin->_begx = win->_begx; in dupwin() [all …]
|
| /mirbsd/src/sys/arch/sparc/sparc/ |
| D | locore.s | 3262 sub %g0, %o0, %o1 ! i = -nwin + 1 3264 add %o0, -2, %o2 ! j = nwin - 2; 3278 sub %o0, 1, %o2 ! j = nwin - 1 3283 cmp %o1, %o0 ! i < nwin? 3305 cmp %o1, %o0 ! i < nwin?
|