Lines Matching refs:vc_cols

387 		unsigned int x = vc->vc_x, cols = vc->vc_cols;  in vc_uniscr_insert()
400 unsigned int x = vc->vc_x, cols = vc->vc_cols; in vc_uniscr_delete()
425 unsigned int cols = vc->vc_cols; in vc_uniscr_clear_lines()
519 uniscr = vc_uniscr_alloc(vc->vc_cols, vc->vc_rows); in vc_uniscr_check()
533 for (x = 0; x < vc->vc_cols; x++) { in vc_uniscr_check()
604 for (x = 0; x < vc->vc_cols; x++) { in vc_uniscr_debug_check()
638 clear = s + (b - t - nr) * vc->vc_cols; in con_scroll()
653 xx = offset % vc->vc_cols; in do_update_region()
654 yy = offset / vc->vc_cols; in do_update_region()
664 while (xx < vc->vc_cols && count) { in do_update_region()
826 oldx = (offset >> 1) % vc->vc_cols; in complement_pos()
827 oldy = (offset >> 1) / vc->vc_cols; in complement_pos()
839 scr_memmovew(p + nr, p, (vc->vc_cols - vc->vc_x - nr) * 2); in insert_char()
844 vc->vc_cols - vc->vc_x); in insert_char()
852 scr_memcpyw(p, p + nr, (vc->vc_cols - vc->vc_x - nr) * 2); in delete_char()
853 scr_memsetw(p + vc->vc_cols - vc->vc_x - nr, vc->vc_video_erase_char, in delete_char()
858 vc->vc_cols - vc->vc_x); in delete_char()
1055 vc->vc_size_row = vc->vc_cols << 1; in visual_init()
1100 vc_init(vc, vc->vc_rows, vc->vc_cols, 1); in vc_allocate()
1169 new_cols = (cols ? cols : vc->vc_cols); in vc_do_resize()
1174 if (new_cols == vc->vc_cols && new_rows == vc->vc_rows) in vc_do_resize()
1205 vc->vc_cols = new_cols; in vc_do_resize()
1270 ws.ws_col = vc->vc_cols; in vc_do_resize()
1396 if (new_x >= vc->vc_cols) in gotoxy()
1397 vc->vc_x = vc->vc_cols - 1; in gotoxy()
1496 vc->vc_cols - vc->vc_x); in csi_J()
1511 count = vc->vc_cols * vc->vc_rows; in csi_J()
1537 count = vc->vc_cols - vc->vc_x; in csi_K()
1545 count = vc->vc_cols; in csi_K()
1563 count = (vpar > vc->vc_cols - vc->vc_x) ? (vc->vc_cols - vc->vc_x) : vpar; in csi_X()
1953 if (nr > vc->vc_cols - vc->vc_x) in csi_at()
1954 nr = vc->vc_cols - vc->vc_x; in csi_at()
1974 if (nr > vc->vc_cols - vc->vc_x) in csi_P()
1975 nr = vc->vc_cols - vc->vc_x; in csi_P()
2105 while (vc->vc_x < vc->vc_cols - 1) { in do_con_trol()
2736 if (vc->vc_x == vc->vc_cols - 1) { in do_con_write()
2953 if (myx == vc->vc_cols - 1) { in vt_console_print()
2964 if (vc->vc_x == vc->vc_cols) { in vt_console_print()
3234 tty->winsize.ws_col = vc_cons[currcons].d->vc_cols; in con_install()
3278 vc->vc_cols = cols; in vc_init()
3348 vc_init(vc, vc->vc_rows, vc->vc_cols, in con_init()
3360 display_desc, vc->vc_cols, vc->vc_rows); in con_init()
3536 desc, vc->vc_cols, vc->vc_rows); in do_bind_con_driver()
3860 if (vc->vc_cols < 999) { in con_debug_enter()
3869 snprintf(cols, 4, "%i", vc->vc_cols); in con_debug_enter()
4600 return uniscr->lines[n / vc->vc_cols][n % vc->vc_cols]; in screen_glyph_unicode()