Lines Matching refs:vc_x

550 	scr_memmovew(p + nr, p, (vc->vc_cols - vc->vc_x - nr) * 2);  in insert_char()
555 vc->vc_cols - vc->vc_x); in insert_char()
562 scr_memcpyw(p, p + nr, (vc->vc_cols - vc->vc_x - nr) * 2); in delete_char()
563 scr_memsetw(p + vc->vc_cols - vc->vc_x - nr, vc->vc_video_erase_char, in delete_char()
568 vc->vc_cols - vc->vc_x); in delete_char()
587 vc->vc_sw->con_putc(vc, i, vc->vc_y, vc->vc_x); in add_softcursor()
596 vc->vc_y, vc->vc_x); in hide_softcursor()
634 vc->vc_pos = vc->vc_origin + vc->vc_size_row * vc->vc_y + 2 * vc->vc_x; in set_origin()
938 gotoxy(vc, vc->vc_x, vc->vc_y); in vc_do_resize()
1063 vc->vc_x = 0; in gotoxy()
1066 vc->vc_x = vc->vc_cols - 1; in gotoxy()
1068 vc->vc_x = new_x; in gotoxy()
1084 vc->vc_pos = vc->vc_origin + vc->vc_y * vc->vc_size_row + (vc->vc_x<<1); in gotoxy()
1139 vc->vc_pos -= vc->vc_x << 1; in cr()
1140 vc->vc_need_wrap = vc->vc_x = 0; in cr()
1146 if (vc->vc_x) { in bs()
1148 vc->vc_x--; in bs()
1200 count = vc->vc_cols - vc->vc_x; in csi_K()
1204 start = (unsigned short *)(vc->vc_pos - (vc->vc_x << 1)); in csi_K()
1205 count = vc->vc_x + 1; in csi_K()
1208 start = (unsigned short *)(vc->vc_pos - (vc->vc_x << 1)); in csi_K()
1226 count = (vpar > vc->vc_cols - vc->vc_x) ? (vc->vc_cols - vc->vc_x) : vpar; in csi_X()
1230 vc->vc_sw->con_clear(vc, vc->vc_y, vc->vc_x, 1, count); in csi_X()
1443 sprintf(buf, "\033[%d;%dR", vc->vc_y + (vc->vc_decom ? vc->vc_top + 1 : 1), vc->vc_x + 1); in cursor_report()
1612 if (nr > vc->vc_cols - vc->vc_x) in csi_at()
1613 nr = vc->vc_cols - vc->vc_x; in csi_at()
1633 if (nr > vc->vc_cols - vc->vc_x) in csi_P()
1634 nr = vc->vc_cols - vc->vc_x; in csi_P()
1654 vc->vc_saved_x = vc->vc_x; in save_cur()
1763 vc->vc_pos -= (vc->vc_x << 1); in do_con_trol()
1764 while (vc->vc_x < vc->vc_cols - 1) { in do_con_trol()
1765 vc->vc_x++; in do_con_trol()
1766 if (vc->vc_tab_stop[vc->vc_x >> 5] & (1 << (vc->vc_x & 31))) in do_con_trol()
1769 vc->vc_pos += (vc->vc_x << 1); in do_con_trol()
1826 vc->vc_tab_stop[vc->vc_x >> 5] |= (1 << (vc->vc_x & 31)); in do_con_trol()
1959 gotoxy(vc, vc->vc_x, vc->vc_y - vc->vc_par[0]); in do_con_trol()
1964 gotoxy(vc, vc->vc_x, vc->vc_y + vc->vc_par[0]); in do_con_trol()
1969 gotoxy(vc, vc->vc_x + vc->vc_par[0], vc->vc_y); in do_con_trol()
1974 gotoxy(vc, vc->vc_x - vc->vc_par[0], vc->vc_y); in do_con_trol()
1989 gotoxay(vc, vc->vc_x ,vc->vc_par[0]); in do_con_trol()
2019 vc->vc_tab_stop[vc->vc_x >> 5] &= ~(1 << (vc->vc_x & 31)); in do_con_trol()
2389 draw_x = vc->vc_x; in do_con_write()
2392 if (vc->vc_x == vc->vc_cols - 1) { in do_con_write()
2396 vc->vc_x++; in do_con_write()
2562 myx = vc->vc_x; in vt_console_print()
2586 vc->vc_sw->con_putcs(vc, start, cnt, vc->vc_y, vc->vc_x); in vt_console_print()
2587 vc->vc_x += cnt; in vt_console_print()
2589 vc->vc_x--; in vt_console_print()
2595 myx = vc->vc_x; in vt_console_print()
2602 myx = vc->vc_x; in vt_console_print()
2618 vc->vc_sw->con_putcs(vc, start, cnt, vc->vc_y, vc->vc_x); in vt_console_print()
2619 vc->vc_x += cnt; in vt_console_print()
2620 if (vc->vc_x == vc->vc_cols) { in vt_console_print()
2621 vc->vc_x--; in vt_console_print()
3011 gotoxy(vc, vc->vc_x, vc->vc_y); in con_init()
4257 p[0] = vc->vc_x; in getconsxy()