/titanic_50/usr/src/lib/libcurses/screen/ |
H A D | wvline.c | 50 short cury = win->_cury, curx = win->_curx; in wvline() local 52 short *firstch = &(win->_firstch[cury]); in wvline() 53 short *lastch = &(win->_lastch[cury]); in wvline() 58 if (num_chars > win->_maxy - cury) in wvline() 59 num_chars = win->_maxy - cury; in wvline() 64 for (num_chars += cury; cury < num_chars; cury++, firstch++, in wvline() 66 fp[cury][curx] = vertch; in wvline()
|
H A D | waddnstr.c | 53 short maxx_1 = win->_maxx - 1, cury = win->_cury, in waddnstr() local 87 cury = win->_cury; in waddnstr() 111 cury = win->_cury; in waddnstr() 118 if (_scrmax > 1 && ISMBIT(_y[cury][curx]) && in waddnstr() 119 (rv = _mbclrch(win, cury, curx)) == ERR) in waddnstr() 121 if (curx < win->_firstch[cury]) in waddnstr() 122 win->_firstch[cury] = curx; in waddnstr() 123 if (curx > win->_lastch[cury]) in waddnstr() 124 win->_lastch[cury] = curx; in waddnstr() 126 _y[cury][curx] = ch; in waddnstr() [all …]
|
H A D | wdelch.c | 57 int cury = win->_cury; in wdelch() local 62 end = &win->_y[cury][win->_maxx - 1]; in wdelch() 63 temp2 = &win->_y[cury][curx + 1]; in wdelch() 74 temp1 = &win->_y[cury][curx]; in wdelch() 86 temp2 = &win->_y[cury][curx+s]; in wdelch() 97 (*_y16update)(win, 1, win->_maxx - curx, cury, curx); in wdelch() 100 win->_lastch[cury] = win->_maxx - 1; in wdelch() 101 if (win->_firstch[cury] > curx) in wdelch() 102 win->_firstch[cury] = curx; in wdelch()
|
H A D | whline.c | 49 short cury = win->_cury, curx = win->_curx; in whline() local 50 chtype a, *fp = &(win->_y[cury][curx]); in whline() 62 if (curx < win->_firstch[cury]) in whline() 63 win->_firstch[cury] = curx; in whline() 64 if ((curx += (num_chars - 1)) > win->_lastch[cury]) in whline() 65 win->_lastch[cury] = curx; in whline()
|
H A D | winsch.c | 54 int n, cury = win->_cury; in winsch() local 79 if (cury >= (win->_maxy-1) || cury == win->_bmarg) in winsch() 104 wcp = win->_y[cury] + curx; in winsch() 120 if (curx < win->_firstch[cury]) in winsch() 121 win->_firstch[cury] = curx; in winsch() 122 win->_lastch[cury] = win->_maxx-1; in winsch()
|
H A D | winsnstr.c | 59 int x, cury, endx, maxx, len; in winsnstr() local 114 cury = win->_cury; in winsnstr() 120 wcp = win->_y[cury] + win->_curx; in winsnstr() 135 wcp = win->_y[cury] + win->_curx; in winsnstr() 139 (void) _mbclrch(win, cury, win->_curx); in winsnstr() 155 if (win->_firstch[cury] > win->_curx) in winsnstr() 156 win->_firstch[cury] = win->_curx; in winsnstr() 157 win->_lastch[cury] = maxx - 1; in winsnstr()
|
H A D | wscrl.c | 51 short curx, cury; in wscrl() local 71 curx = win->_curx; cury = win->_cury; in wscrl() 73 if (cury >= win->_tmarg && cury <= win->_bmarg) in wscrl() 80 win->_cury = cury; in wscrl()
|
H A D | wclrtobot.c | 52 int cury = win->_cury; in wclrtobot() local 62 if (cury >= win->_tmarg && cury <= win->_bmarg) in wclrtobot() 68 for (; win->_cury > cury; win->_cury--) in wclrtobot()
|
H A D | mvcur.c | 89 mvcur(int cury, int curx, int newy, int newx) in mvcur() argument 97 if (cury == newy && curx == newx) in mvcur() 119 cury >= 0 && cury < curscr->_maxy && in mvcur() 121 if (cursor_down && (newy == (cury + 1)) && in mvcur() 130 if (cury == newy && newx < curx - 4 && newx > curx + 4) { in mvcur() 146 if (rl >= LARGECOST && cury >= 0 && cury < curscr->_maxy && in mvcur() 148 rl = _mvrel(cury, curx, newy, newx, FALSE); in mvcur() 168 (void) _mvrel(cury, curx, newy, newx, TRUE); in mvcur()
|
H A D | wrefresh.c | 295 int x, cury, didshift; in _shove() local 315 cury = _virtscr->_cury; in _shove() 329 if ((curx >= x) && (cury == wy)) in _shove() 349 if (wy == cury) in _shove()
|
H A D | llib-lcurses | 805 int mvcur(int cury, int curx, int newy, int newx);
|