Searched refs:begx (Results 1 - 7 of 7) 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);
100 win->_begx = (short) begx;
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
85 if (0 <= begx)
86 ncols -= begx;
93 if (begy < parent->_begy || begx < parent->_begx
95 || parent->_maxx < (begx-parent->_begx) + ncols)
105 ncols = parent->_maxx - (begx
[all...]
/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)) ||
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...]

Completed in 886 milliseconds