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

/freebsd-11.0-release/sys/pc98/cbus/
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-sck.c439 tcp->saved_ypos = scp->ypos;
539 sc_move_cursor(scp, 0, scp->ypos + n);
546 sc_move_cursor(scp, 0, scp->ypos - n);
577 sc_term_ins_line(scp, scp->ypos, tcp->param[0],
582 sc_term_del_line(scp, scp->ypos, tcp->param[0],
714 tcp->saved_ypos = scp->ypos;
988 scp->ypos++;
1037 scp->ypos++;
1054 scp->ypos--;
1065 scp->ypos
[all...]
/freebsd-11.0-release/sys/dev/syscons/logo/
H A Dlogo_saver.c93 static int xpos = 0, ypos = 0; local
99 if ((ypos + logo_h + yinc > scrh) || (ypos + yinc < 0))
102 ypos += yinc;
105 logo_blit(adp, xpos, ypos);
/freebsd-11.0-release/sys/dev/syscons/daemon/
H A Ddaemon_saver.c125 clear_daemon(sc_softc_t *sc, int xpos, int ypos, int dxdir, int xoff, int yoff, argument
134 (ypos + y)*sc->cur_scp->xsize + xpos + xoff,
141 draw_daemon(sc_softc_t *sc, int xpos, int ypos, int dxdir, int xoff, int yoff, argument
166 (ypos + y)*sc->cur_scp->xsize
172 (ypos + y)*sc->cur_scp->xsize
183 clear_string(sc_softc_t *sc, int xpos, int ypos, int xoff, char *s, int len) argument
188 ypos*sc->cur_scp->xsize + xpos + xoff, len - xoff,
193 draw_string(sc_softc_t *sc, int xpos, int ypos, int xoff, u_char *s, int len) argument
199 ypos*sc->cur_scp->xsize + xpos + x,
/freebsd-11.0-release/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-11.0-release/sys/dev/syscons/
H A Dscterm.c56 scp->ypos = y;
57 scp->cursor_pos = scp->ypos*scp->xsize + scp->xpos;
H A Dsyscons.c445 scp->ypos * scp->xsize + scp->xpos);
457 scp->ypos = scp->ysize - 1;
907 ptr->mv_row = scp->ypos;
2636 sc_move_cursor(sc->old_scp, sc->old_scp->xpos, sc->old_scp->ypos);
2656 sc_move_cursor(scp, scp->xpos, scp->ypos);
2936 scp->ypos = row;
3281 scp->xpos = scp->ypos = 0;
H A Dsyscons.h287 int ypos; /* current Y position */ member in struct:scr_stat
/freebsd-11.0-release/contrib/ncurses/ncurses/widechar/
H A Dlib_add_wch.c117 newline_forces_scroll(WINDOW *win, NCURSES_SIZE_T * ypos) argument
121 if (*ypos >= win->_regtop && *ypos == win->_regbottom) {
122 *ypos = win->_regbottom;
125 *ypos = (NCURSES_SIZE_T) (*ypos + 1);
/freebsd-11.0-release/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-11.0-release/contrib/ncurses/ncurses/base/
H A Dlib_addch.c120 newline_forces_scroll(WINDOW *win, NCURSES_SIZE_T * ypos) argument
124 if (*ypos >= win->_regtop && *ypos == win->_regbottom) {
125 *ypos = win->_regbottom;
128 *ypos = (NCURSES_SIZE_T) (*ypos + 1);
/freebsd-11.0-release/sys/dev/syscons/snake/
H A Dsnake_saver.c90 diry = (scp->ypos ?
93 savs[f] = scp->xpos + scp->ypos*scp->xsize;
/freebsd-11.0-release/sys/dev/drm2/i915/
H A Dintel_tv.c1094 int xpos = 0x0, ypos = 0x0; local
1117 ypos += intel_tv->margin[TV_MARGIN_TOP];
1122 I915_WRITE(TV_WIN_POS, (xpos<<16)|ypos);

Completed in 264 milliseconds