Lines Matching refs:begx
140 int num_lines, int num_columns, int begy, int begx) in NCURSES_SP_NAME()
147 begy, begx)); in NCURSES_SP_NAME()
150 || begx < 0 in NCURSES_SP_NAME()
159 num_columns = screen_columns(SP_PARM) - begx; in NCURSES_SP_NAME()
162 num_lines, num_columns, begy, begx, 0); in NCURSES_SP_NAME()
183 newwin(int num_lines, int num_columns, int begy, int begx) in newwin() argument
188 num_lines, num_columns, begy, begx); in newwin()
195 derwin(WINDOW *orig, int num_lines, int num_columns, int begy, int begx) in derwin() argument
205 begy, begx)); in derwin()
210 if (begy < 0 || begx < 0 || orig == 0 || num_lines < 0 || num_columns < 0) in derwin()
213 || begx + num_columns > orig->_maxx + 1) in derwin()
220 num_columns = orig->_maxx + 1 - begx; in derwin()
227 orig->_begx + begx, flags); in derwin()
232 win->_parx = begx; in derwin()
237 win->_line[i].text = &orig->_line[begy++].text[begx]; in derwin()
270 int begx, in NCURSES_SP_NAME()
279 (void *) SP_PARM, num_lines, num_columns, begy, begx)); in NCURSES_SP_NAME()
304 win->_begx = (NCURSES_SIZE_T) begx; in NCURSES_SP_NAME()
363 if (!is_padwin && (begx + num_columns == screen_columns(SP_PARM))) { in NCURSES_SP_NAME()
366 if (begx == 0 && num_lines == screen_lines(SP_PARM) && begy == 0) in NCURSES_SP_NAME()