Searched defs:begx (Results 1 - 5 of 5) 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);
100 win->_begx = (short) begx;
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)) ||
88 if (0 <= begx)
89 ncols -= begx;
97 if (begy < parent->_begy || begx < parent->_begx ||
99 parent->_maxx < (begx-parent->_begx) + ncols)
110 ncols = parent->_maxx - (begx - parent->_begx);
120 if (0 <= begx) {
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/ucblib/libcurses/
H A Dnewwin.c40 newwin(int num_lines, int num_cols, int begy, int begx) argument
48 bx = begx;
95 subwin(WINDOW *orig, int num_lines, int num_cols, int begy, int begx) argument
101 bx = begx;
155 makenew(int num_lines, int num_cols, int begy, int begx) argument
161 bx = begx;

Completed in 46 milliseconds