/titanic_41/usr/src/lib/libxcurses/src/libc/xcurses/ |
H A D | newwin.c | 62 __m_newwin(parent, nlines, ncols, begy, begx) in __m_newwin() argument 64 int nlines, ncols, begy, begx; 72 parent, nlines, ncols, begy, begx 85 if (0 <= begx) 86 ncols -= begx; 93 if (begy < parent->_begy || begx < parent->_begx 95 || parent->_maxx < (begx-parent->_begx) + ncols) 105 ncols = parent->_maxx - (begx - parent->_begx); 113 if (0 <= begx) { 114 if (columns < begx + ncols) [all …]
|
H A D | newpad.c | 62 (subpad)(parent, nlines, ncols, begy, begx) 64 int nlines, ncols, begy, begx; variable 71 parent, nlines, ncols, begy, begx 75 w = subwin(parent, nlines, ncols, begy, begx);
|
/titanic_41/usr/src/lib/libxcurses2/src/libc/xcurses/ |
H A D | newwin.c | 70 int nlines, int ncols, int begy, int begx) in __m_newwin() argument 76 isPad = ((begy < 0) && (begx < 0)) || in __m_newwin() 88 if (0 <= begx) in __m_newwin() 89 ncols -= begx; in __m_newwin() 97 if (begy < parent->_begy || begx < parent->_begx || in __m_newwin() 99 parent->_maxx < (begx-parent->_begx) + ncols) in __m_newwin() 110 ncols = parent->_maxx - (begx - parent->_begx); in __m_newwin() 120 if (0 <= begx) { in __m_newwin() 121 if (columns < begx + ncols) { in __m_newwin() 167 dx = begx - parent->_begx; in __m_newwin() [all …]
|
H A D | newpad.c | 66 subpad(WINDOW *parent, int nlines, int ncols, int begy, int begx) in subpad() argument 70 w = subwin(parent, nlines, ncols, begy, begx); in subpad()
|
/titanic_41/usr/src/lib/libcurses/screen/ |
H A D | makenew.c | 52 _makenew(int nlines, int ncols, int begy, int begx) in _makenew() argument 60 nlines, ncols, begy, begx); in _makenew() 100 win->_begx = (short) begx; in _makenew() 101 win->_clear = (((begy + SP->Yabove + begx) == 0) && in _makenew()
|
H A D | V2.makenew.c | 50 makenew(int num_lines, int num_cols, int begy, int begx) in makenew() argument 52 return (_makenew(num_lines, num_cols, begy, begx)); in makenew()
|
H A D | llib-lcurses | 50 WINDOW *makenew(int num_lines, int num_cols, int begy, int begx); 750 WINDOW *_makenew(int nlines, int ncols, int begy, int begx);
|
H A D | curses.ed | 491 *newwin(), /* nlines, ncols, begy, begx */ 493 *derwin(), /* orig, nlines, ncols, begy, begx */
|
/titanic_41/usr/src/ucblib/libcurses/ |
H A D | newwin.c | 40 newwin(int num_lines, int num_cols, int begy, int begx) in newwin() argument 48 bx = begx; in newwin() 95 subwin(WINDOW *orig, int num_lines, int num_cols, int begy, int begx) in subwin() argument 101 bx = begx; in subwin() 155 makenew(int num_lines, int num_cols, int begy, int begx) in makenew() argument 161 bx = begx; in makenew()
|