Searched refs:begx (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/ncurses/ncurses/base/ |
H A D | lib_newwin.c | 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() [all …]
|
H A D | lib_refresh.c | 83 int begx; in wnoutrefresh() local 118 begx = win->_begx; in wnoutrefresh() 142 wide = (begx <= 1 && win->_maxx >= (NewScreen(SP_PARM)->_maxx - 1)); in wnoutrefresh() 157 if (limit_x > NewScreen(SP_PARM)->_maxx - begx) in wnoutrefresh() 158 limit_x = NewScreen(SP_PARM)->_maxx - begx; in wnoutrefresh() 173 dst_col = src_col + begx; in wnoutrefresh() 211 int last_dst = begx + ((last_src < win->_maxx) in wnoutrefresh()
|
H A D | lib_pad.c | 86 subpad(WINDOW *orig, int l, int c, int begy, int begx) in subpad() argument 94 || ((win = derwin(orig, l, c, begy, begx)) == NULL)) in subpad()
|
/freebsd/contrib/ncurses/ncurses/ |
H A D | llib-lncursest | 1652 int begx) 1660 int begx) 1669 int begx) 1687 int begx, 1774 int begx)
|
H A D | llib-lncurses | 1643 int begx) 1651 int begx) 1660 int begx) 1678 int begx, 1765 int begx)
|
H A D | llib-lncursestw | 2233 int begx) 2241 int begx) 2250 int begx) 2268 int begx, 2355 int begx)
|
H A D | llib-lncursesw | 2224 int begx) 2232 int begx) 2241 int begx) 2259 int begx, 2346 int begx)
|
/freebsd/contrib/ncurses/ |
H A D | NEWS | 6199 + correct limit-check in wredrawln, accounting for begy/begx values
|