Searched refs:begy (Results 1 - 8 of 8) sorted by relevance

/osnet-11/usr/src/lib/libcurses/screen/
H A DV2.makenew.c50 makenew(int num_lines, int num_cols, int begy, int begx) argument
52 return (_makenew(num_lines, num_cols, begy, begx));
H A Dmakenew.c52 _makenew(int nlines, int ncols, int begy, int begx) argument
60 nlines, ncols, begy, begx);
98 win->_begy = (short) begy;
101 win->_clear = (((begy + SP->Yabove + begx) == 0) &&
H A Dllib-lcurses50 WINDOW *makenew(int num_lines, int num_cols, int begy, int begx);
750 WINDOW *_makenew(int nlines, int ncols, int begy, int begx);
/osnet-11/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dnewpad.c62 (subpad)(parent, nlines, ncols, begy, begx)
64 int nlines, ncols, begy, begx;
71 parent, nlines, ncols, begy, begx
75 w = subwin(parent, nlines, ncols, begy, begx);
H A Dnewwin.c52 * then the default sizes will be LINES-begy and COLS-begx.
54 * For a pad, provide the dimensions and -1 for begy and begx.
62 __m_newwin(parent, nlines, ncols, begy, begx)
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
[all...]
H A Dinitscr.c70 int i, n, begy; local
/osnet-11/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dnewpad.c66 subpad(WINDOW *parent, int nlines, int ncols, int begy, int begx) argument
70 w = subwin(parent, nlines, ncols, begy, begx);
H A Dnewwin.c59 * then the default sizes will be LINES-begy and COLS-begx.
61 * For a pad, provide the dimensions and -1 for begy and begx.
70 int nlines, int ncols, int begy, int begx)
76 isPad = ((begy < 0) && (begx < 0)) ||
83 if (0 <= begy)
84 nlines -= begy;
97 if (begy < parent->_begy || begx < parent->_begx ||
98 parent->_maxy < (begy-parent->_begy) + nlines ||
108 nlines = parent->_maxy - (begy - parent->_begy);
115 if (0 <= begy) {
69 __m_newwin(WINDOW *parent, int nlines, int ncols, int begy, int begx) argument
266 derwin(WINDOW *parent, int nlines, int ncols, int begy, int begx) argument
284 newwin(int nlines, int ncols, int begy, int begx) argument
294 subwin(WINDOW *parent, int nlines, int ncols, int begy, int begx) argument
[all...]

Completed in 24 milliseconds