/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/ |
H A D | newwin.c | 60 __m_newwin(parent, nlines, ncols, begy, begx) in __m_newwin() argument 62 int nlines, ncols, begy, begx; 70 parent, nlines, ncols, begy, begx 83 if (0 <= begx) 84 ncols -= begx; 91 if (begy < parent->_begy || begx < parent->_begx 93 || parent->_maxx < (begx-parent->_begx) + ncols) 103 ncols = parent->_maxx - (begx - parent->_begx); 111 if (0 <= begx) { 112 if (columns < begx + ncols) [all …]
|
H A D | newpad.c | 60 (subpad)(parent, nlines, ncols, begy, begx) 62 int nlines, ncols, begy, begx; variable 69 parent, nlines, ncols, begy, begx 73 w = subwin(parent, nlines, ncols, begy, begx);
|
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/ |
H A D | newwin.c | 68 int nlines, int ncols, int begy, int begx) in __m_newwin() argument 74 isPad = ((begy < 0) && (begx < 0)) || in __m_newwin() 86 if (0 <= begx) in __m_newwin() 87 ncols -= begx; in __m_newwin() 95 if (begy < parent->_begy || begx < parent->_begx || in __m_newwin() 97 parent->_maxx < (begx-parent->_begx) + ncols) in __m_newwin() 108 ncols = parent->_maxx - (begx - parent->_begx); in __m_newwin() 118 if (0 <= begx) { in __m_newwin() 119 if (columns < begx + ncols) { in __m_newwin() 165 dx = begx - parent->_begx; in __m_newwin() [all …]
|
H A D | newpad.c | 65 subpad(WINDOW *parent, int nlines, int ncols, int begy, int begx) in subpad() argument 69 w = subwin(parent, nlines, ncols, begy, begx); in subpad()
|
/illumos-gate/usr/src/lib/libcurses/screen/ |
H A D | makenew.c | 50 _makenew(int nlines, int ncols, int begy, int begx) in _makenew() argument 58 nlines, ncols, begy, begx); in _makenew() 98 win->_begx = (short) begx; in _makenew() 99 win->_clear = (((begy + SP->Yabove + begx) == 0) && in _makenew()
|
H A D | V2.makenew.c | 48 makenew(int num_lines, int num_cols, int begy, int begx) in makenew() argument 50 return (_makenew(num_lines, num_cols, begy, begx)); in makenew()
|
H A D | curses.ed | 491 *newwin(), /* nlines, ncols, begy, begx */ 493 *derwin(), /* orig, nlines, ncols, begy, begx */
|
/illumos-gate/usr/src/ucblib/libcurses/ |
H A D | newwin.c | 38 newwin(int num_lines, int num_cols, int begy, int begx) in newwin() argument 46 bx = begx; in newwin() 93 subwin(WINDOW *orig, int num_lines, int num_cols, int begy, int begx) in subwin() argument 99 bx = begx; in subwin() 153 makenew(int num_lines, int num_cols, int begy, int begx) in makenew() argument 159 bx = begx; in makenew()
|