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

/freebsd-12-stable/contrib/ncurses/ncurses/base/
H A Dlib_newwin.c135 int num_lines, int num_columns, int begy, int begx)
142 begy, begx));
145 || begx < 0
154 num_columns = screen_columns(SP_PARM) - begx;
157 num_lines, num_columns, begy, begx, 0);
178 newwin(int num_lines, int num_columns, int begy, int begx) argument
183 num_lines, num_columns, begy, begx);
190 derwin(WINDOW *orig, int num_lines, int num_columns, int begy, int begx) argument
200 begy, begx));
205 if (begy < 0 || begx <
134 newwin(NCURSES_SP_DCLx int num_lines, int num_columns, int begy, int begx) argument
261 _nc_makenew(NCURSES_SP_DCLx int num_lines, int num_columns, int begy, int begx, int flags) argument
[all...]
H A Dlib_refresh.c82 int begx; local
109 begx = win->_begx;
133 wide = (begx <= 1 && win->_maxx >= (NewScreen(SP_PARM)->_maxx - 1));
148 if (limit_x > NewScreen(SP_PARM)->_maxx - begx)
149 limit_x = NewScreen(SP_PARM)->_maxx - begx;
164 dst_col = src_col + begx;
203 int last_dst = begx + ((last_src < win->_maxx)
H A Dlib_pad.c85 subpad(WINDOW *orig, int l, int c, int begy, int begx) argument
93 || ((win = derwin(orig, l, c, begy, begx)) == NULL))

Completed in 118 milliseconds