Lines Matching refs:vc_x

546 	scr_memmovew(p + nr, p, (vc->vc_cols - vc->vc_x - nr) * 2);  in insert_char()
551 vc->vc_cols - vc->vc_x); in insert_char()
558 scr_memcpyw(p, p + nr, (vc->vc_cols - vc->vc_x - nr) * 2); in delete_char()
559 scr_memsetw(p + vc->vc_cols - vc->vc_x - nr, vc->vc_video_erase_char, in delete_char()
564 vc->vc_cols - vc->vc_x); in delete_char()
583 vc->vc_sw->con_putc(vc, i, vc->vc_y, vc->vc_x); in add_softcursor()
592 vc->vc_y, vc->vc_x); in hide_softcursor()
630 vc->vc_pos = vc->vc_origin + vc->vc_size_row * vc->vc_y + 2 * vc->vc_x; in set_origin()
932 gotoxy(vc, vc->vc_x, vc->vc_y); in vc_do_resize()
1057 vc->vc_x = 0; in gotoxy()
1060 vc->vc_x = vc->vc_cols - 1; in gotoxy()
1062 vc->vc_x = new_x; in gotoxy()
1078 vc->vc_pos = vc->vc_origin + vc->vc_y * vc->vc_size_row + (vc->vc_x<<1); in gotoxy()
1133 vc->vc_pos -= vc->vc_x << 1; in cr()
1134 vc->vc_need_wrap = vc->vc_x = 0; in cr()
1140 if (vc->vc_x) { in bs()
1142 vc->vc_x--; in bs()
1194 count = vc->vc_cols - vc->vc_x; in csi_K()
1198 start = (unsigned short *)(vc->vc_pos - (vc->vc_x << 1)); in csi_K()
1199 count = vc->vc_x + 1; in csi_K()
1202 start = (unsigned short *)(vc->vc_pos - (vc->vc_x << 1)); in csi_K()
1220 count = (vpar > vc->vc_cols - vc->vc_x) ? (vc->vc_cols - vc->vc_x) : vpar; in csi_X()
1224 vc->vc_sw->con_clear(vc, vc->vc_y, vc->vc_x, 1, count); in csi_X()
1437 sprintf(buf, "\033[%d;%dR", vc->vc_y + (vc->vc_decom ? vc->vc_top + 1 : 1), vc->vc_x + 1); in cursor_report()
1599 if (nr > vc->vc_cols - vc->vc_x) in csi_at()
1600 nr = vc->vc_cols - vc->vc_x; in csi_at()
1620 if (nr > vc->vc_cols - vc->vc_x) in csi_P()
1621 nr = vc->vc_cols - vc->vc_x; in csi_P()
1641 vc->vc_saved_x = vc->vc_x; in save_cur()
1749 vc->vc_pos -= (vc->vc_x << 1); in do_con_trol()
1750 while (vc->vc_x < vc->vc_cols - 1) { in do_con_trol()
1751 vc->vc_x++; in do_con_trol()
1752 if (vc->vc_tab_stop[vc->vc_x >> 5] & (1 << (vc->vc_x & 31))) in do_con_trol()
1755 vc->vc_pos += (vc->vc_x << 1); in do_con_trol()
1812 vc->vc_tab_stop[vc->vc_x >> 5] |= (1 << (vc->vc_x & 31)); in do_con_trol()
1945 gotoxy(vc, vc->vc_x, vc->vc_y - vc->vc_par[0]); in do_con_trol()
1950 gotoxy(vc, vc->vc_x, vc->vc_y + vc->vc_par[0]); in do_con_trol()
1955 gotoxy(vc, vc->vc_x + vc->vc_par[0], vc->vc_y); in do_con_trol()
1960 gotoxy(vc, vc->vc_x - vc->vc_par[0], vc->vc_y); in do_con_trol()
1975 gotoxay(vc, vc->vc_x ,vc->vc_par[0]); in do_con_trol()
2005 vc->vc_tab_stop[vc->vc_x >> 5] &= ~(1 << (vc->vc_x & 31)); in do_con_trol()
2375 draw_x = vc->vc_x; in do_con_write()
2378 if (vc->vc_x == vc->vc_cols - 1) { in do_con_write()
2382 vc->vc_x++; in do_con_write()
2548 myx = vc->vc_x; in vt_console_print()
2572 vc->vc_sw->con_putcs(vc, start, cnt, vc->vc_y, vc->vc_x); in vt_console_print()
2573 vc->vc_x += cnt; in vt_console_print()
2575 vc->vc_x--; in vt_console_print()
2581 myx = vc->vc_x; in vt_console_print()
2588 myx = vc->vc_x; in vt_console_print()
2604 vc->vc_sw->con_putcs(vc, start, cnt, vc->vc_y, vc->vc_x); in vt_console_print()
2605 vc->vc_x += cnt; in vt_console_print()
2606 if (vc->vc_x == vc->vc_cols) { in vt_console_print()
2607 vc->vc_x--; in vt_console_print()
2997 gotoxy(vc, vc->vc_x, vc->vc_y); in con_init()
4222 p[0] = vc->vc_x; in getconsxy()