Lines Matching refs:begy
140 int num_lines, int num_columns, int begy, int begx) in NCURSES_SP_NAME()
147 begy, begx)); in NCURSES_SP_NAME()
149 if (begy < 0 in NCURSES_SP_NAME()
157 num_lines = SP_PARM->_lines_avail - begy; 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()
212 if (begy + num_lines > orig->_maxy + 1 in derwin()
217 num_lines = orig->_maxy + 1 - begy; in derwin()
226 orig->_begy + begy, in derwin()
231 win->_pary = begy; in derwin()
237 win->_line[i].text = &orig->_line[begy++].text[begx]; in derwin()
269 int begy, in NCURSES_SP_NAME()
279 (void *) SP_PARM, num_lines, num_columns, begy, begx)); in NCURSES_SP_NAME()
303 win->_begy = (NCURSES_SIZE_T) begy; in NCURSES_SP_NAME()
366 if (begx == 0 && num_lines == screen_lines(SP_PARM) && begy == 0) in NCURSES_SP_NAME()
369 if (begy + num_lines == screen_lines(SP_PARM)) in NCURSES_SP_NAME()