Searched defs:begy (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/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) &&
/illumos-gate/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...]
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dinitscr.c70 int i, n, begy; local
/illumos-gate/usr/src/ucblib/libcurses/
H A Dnewwin.c40 newwin(int num_lines, int num_cols, int begy, int begx) argument
47 by = begy;
95 subwin(WINDOW *orig, int num_lines, int num_cols, int begy, int begx) argument
100 by = begy;
155 makenew(int num_lines, int num_cols, int begy, int begx) argument
160 by = begy;

Completed in 63 milliseconds