Searched refs:begx (Results 1 - 3 of 3) sorted by relevance

/freebsd-10.3-release/contrib/ncurses/ncurses/base/
H A Dlib_newwin.c118 newwin(int num_lines, int num_columns, int begy, int begx) argument
124 T((T_CALLED("newwin(%d,%d,%d,%d)"), num_lines, num_columns, begy, begx));
126 if (begy < 0 || begx < 0 || num_lines < 0 || num_columns < 0)
132 num_columns = screen_columns - begx;
134 if ((win = _nc_makenew(num_lines, num_columns, begy, begx, 0)) == 0)
153 derwin(WINDOW *orig, int num_lines, int num_columns, int begy, int begx) argument
160 begy, begx));
165 if (begy < 0 || begx < 0 || orig == 0 || num_lines < 0 || num_columns < 0)
168 || begx + num_columns > orig->_maxx + 1)
175 num_columns = orig->_maxx + 1 - begx;
214 _nc_makenew(int num_lines, int num_columns, int begy, int begx, int flags) argument
[all...]
H A Dlib_refresh.c78 NCURSES_SIZE_T begx; local
101 begx = win->_begx;
125 wide = (begx <= 1 && win->_maxx >= (newscr->_maxx - 1));
140 if (limit_x > newscr->_maxx - begx)
141 limit_x = newscr->_maxx - begx;
156 dst_col = src_col + begx;
195 int last_dst = begx + ((last_src < win->_maxx)
H A Dlib_pad.c74 subpad(WINDOW *orig, int l, int c, int begy, int begx) argument
82 || ((win = derwin(orig, l, c, begy, begx)) == NULL))

Completed in 48 milliseconds