/titanic_50/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 80 if (0 <= begy) 81 nlines -= begy; 93 if (begy < parent->_begy || begx < parent->_begx 94 || parent->_maxy < (begy-parent->_begy) + nlines 103 nlines = parent->_maxy - (begy - parent->_begy); 109 if (0 <= begy) { 110 if (lines < begy + nlines) [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);
|
H A D | initscr.c | 70 int i, n, begy; in initscr() local
|
/titanic_50/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() 83 if (0 <= begy) in __m_newwin() 84 nlines -= begy; in __m_newwin() 97 if (begy < parent->_begy || begx < parent->_begx || in __m_newwin() 98 parent->_maxy < (begy-parent->_begy) + nlines || in __m_newwin() 108 nlines = parent->_maxy - (begy - parent->_begy); in __m_newwin() 115 if (0 <= begy) { in __m_newwin() 116 if (lines < begy + nlines) { in __m_newwin() 166 dy = begy - parent->_begy; 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_50/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() 98 win->_begy = (short) begy; 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 | 151 short _yoffset; /* actual begy is _begy+_yoffset */ 491 *newwin(), /* nlines, ncols, begy, begx */ 493 *derwin(), /* orig, nlines, ncols, begy, begx */
|
/titanic_50/usr/src/ucblib/libcurses/ |
H A D | newwin.c | 40 newwin(int num_lines, int num_cols, int begy, int begx) in newwin() argument 47 by = begy; in newwin() 95 subwin(WINDOW *orig, int num_lines, int num_cols, int begy, int begx) in subwin() argument 100 by = begy; in subwin() 155 makenew(int num_lines, int num_cols, int begy, int begx) in makenew() argument 160 by = begy; in makenew()
|