Searched refs:begy (Results 1 – 7 of 7) sorted by relevance
| /freebsd-10-stable/contrib/ncurses/ncurses/base/ |
| D | lib_newwin.c | 118 newwin(int num_lines, int num_columns, int begy, int begx) in newwin() argument 124 T((T_CALLED("newwin(%d,%d,%d,%d)"), num_lines, num_columns, begy, begx)); in newwin() 126 if (begy < 0 || begx < 0 || num_lines < 0 || num_columns < 0) in newwin() 130 num_lines = SP->_lines_avail - begy; in newwin() 134 if ((win = _nc_makenew(num_lines, num_columns, begy, begx, 0)) == 0) in newwin() 153 derwin(WINDOW *orig, int num_lines, int num_columns, int begy, int begx) in derwin() argument 160 begy, begx)); in derwin() 165 if (begy < 0 || begx < 0 || orig == 0 || num_lines < 0 || num_columns < 0) in derwin() 167 if (begy + num_lines > orig->_maxy + 1 in derwin() 172 num_lines = orig->_maxy + 1 - begy; in derwin() [all …]
|
| D | lib_refresh.c | 79 NCURSES_SIZE_T begy; in wnoutrefresh() local 102 begy = win->_begy; in wnoutrefresh() 143 for (src_row = 0, dst_row = begy + win->_yoffset; in wnoutrefresh() 262 : (begy + oind + win->_yoffset)); in wnoutrefresh()
|
| D | lib_pad.c | 74 subpad(WINDOW *orig, int l, int c, int begy, int begx) in subpad() argument 82 || ((win = derwin(orig, l, c, begy, begx)) == NULL)) in subpad()
|
| /freebsd-10-stable/contrib/ncurses/ncurses/ |
| D | llib-lncurses | 1372 int begy, 1381 int begy, 1398 int begy, 1458 int begy,
|
| D | llib-lncursest | 1376 int begy, 1385 int begy, 1402 int begy, 1462 int begy,
|
| D | llib-lncursesw | 1880 int begy, 1889 int begy, 1906 int begy, 1966 int begy,
|
| /freebsd-10-stable/contrib/ncurses/include/ |
| D | curses.h.in | 410 NCURSES_SIZE_T _yoffset; /* real begy is _begy + _yoffset */
|