Searched refs:ypos (Results 1 - 13 of 13) sorted by relevance

/freebsd-13-stable/sys/dev/syscons/
H A Dsctermvar.h128 sc_move_cursor(scp, n - 1, scp->ypos);
144 n = imin(n, scp->ypos - head);
147 sc_move_cursor(scp, scp->xpos, scp->ypos - n);
157 n = imin(n, tail - scp->ypos - 1);
160 sc_move_cursor(scp, scp->xpos, scp->ypos + n);
168 sc_move_cursor(scp, scp->xpos - n, scp->ypos);
176 sc_move_cursor(scp, scp->xpos + n, scp->ypos);
186 if (n <= scp->ypos - head) {
187 sc_move_cursor(scp, scp->xpos, scp->ypos - n);
189 sc_term_ins_line(scp, head, n - (scp->ypos
[all...]
H A Dscterm.c58 scp->ypos = y;
59 scp->cursor_pos = scp->ypos*scp->xsize + scp->xpos;
H A Dscterm-sc.c211 tcp->saved_ypos = scp->ypos;
300 sc_move_cursor(scp, 0, scp->ypos + n);
307 sc_move_cursor(scp, 0, scp->ypos - n);
338 sc_term_ins_line(scp, scp->ypos, tcp->param[0],
343 sc_term_del_line(scp, scp->ypos, tcp->param[0],
475 tcp->saved_ypos = scp->ypos;
H A Dsyscons.c520 scp->ypos * scp->xsize + scp->xpos);
532 scp->ypos = scp->ysize - 1;
1017 ptr->mv_row = scp->ypos;
2989 sc_move_cursor(sc->old_scp, sc->old_scp->xpos, sc->old_scp->ypos);
3003 sc_move_cursor(scp, scp->xpos, scp->ypos);
3340 scp->ypos = row;
3659 scp->xpos = scp->ypos = 0;
H A Dsyscons.h286 int ypos; /* current Y position */ member in struct:scr_stat
H A Dscterm-teken.c298 tp.tp_row = scp->ypos;
/freebsd-13-stable/sys/dev/syscons/logo/
H A Dlogo_saver.c95 static int xpos = 0, ypos = 0; local
101 if ((ypos + logo_h + yinc > scrh) || (ypos + yinc < 0))
104 ypos += yinc;
107 logo_blit(adp, xpos, ypos);
/freebsd-13-stable/sys/dev/syscons/daemon/
H A Ddaemon_saver.c127 clear_daemon(sc_softc_t *sc, int xpos, int ypos, int dxdir, int xoff, int yoff, argument
136 (ypos + y)*sc->cur_scp->xsize + xpos + xoff,
143 draw_daemon(sc_softc_t *sc, int xpos, int ypos, int dxdir, int xoff, int yoff, argument
168 (ypos + y)*sc->cur_scp->xsize
174 (ypos + y)*sc->cur_scp->xsize
185 clear_string(sc_softc_t *sc, int xpos, int ypos, int xoff, char *s, int len) argument
190 ypos*sc->cur_scp->xsize + xpos + xoff, len - xoff,
195 draw_string(sc_softc_t *sc, int xpos, int ypos, int xoff, u_char *s, int len) argument
201 ypos*sc->cur_scp->xsize + xpos + x,
/freebsd-13-stable/tools/sched/
H A Dschedgraph.py478 ypos = 0
483 row=ypos, column=0, sticky=W+E)
486 row=ypos, column=1, sticky=W+E)
489 row=ypos, column=2, sticky=W+E)
496 row=ypos, column=3, sticky=W+E)
497 ypos += 1
558 ypos = 0
575 l.grid(row=ypos, column=0, sticky=E+W)
576 r.grid(row=ypos, column=1, sticky=E+W)
579 ypos
[all...]
/freebsd-13-stable/contrib/ncurses/ncurses/base/
H A Dlib_addch.c121 newline_forces_scroll(WINDOW *win, NCURSES_SIZE_T *ypos) argument
125 if (*ypos >= win->_regtop && *ypos <= win->_regbottom) {
126 if (*ypos == win->_regbottom) {
127 *ypos = win->_regbottom;
129 } else if (*ypos < win->_maxy) {
130 *ypos = (NCURSES_SIZE_T) (*ypos + 1);
132 } else if (*ypos < win->_maxy) {
133 *ypos
[all...]
/freebsd-13-stable/contrib/ncurses/ncurses/widechar/
H A Dlib_add_wch.c118 newline_forces_scroll(WINDOW *win, NCURSES_SIZE_T *ypos) argument
122 if (*ypos >= win->_regtop && *ypos == win->_regbottom) {
123 *ypos = win->_regbottom;
126 *ypos = (NCURSES_SIZE_T) (*ypos + 1);
/freebsd-13-stable/contrib/wpa/src/crypto/
H A Daes-gcm.c148 u8 *ypos = y; local
158 aes_encrypt(aes, cb, ypos);
159 xor_block(ypos, xpos);
161 ypos += AES_BLOCK_SIZE;
170 *ypos++ = *xpos++ ^ tmp[i];
/freebsd-13-stable/sys/dev/syscons/snake/
H A Dsnake_saver.c92 diry = (scp->ypos ?
95 savs[f] = scp->xpos + scp->ypos*scp->xsize;

Completed in 137 milliseconds