Home
last modified time | relevance | path

Searched refs:vc_size_row (Results 1 – 8 of 8) sorted by relevance

/linux-6.15/drivers/tty/vt/
H A Dselection.c237 if (!((i + 2) % vc->vc_size_row)) { in vc_selection_store_chars()
270 if (!(ps % vc->vc_size_row)) in vc_do_selection()
280 if (!((pe + 2) % vc->vc_size_row)) in vc_do_selection()
285 new_sel_start = rounddown(ps, vc->vc_size_row); in vc_do_selection()
286 new_sel_end = rounddown(pe, vc->vc_size_row) + in vc_do_selection()
287 vc->vc_size_row - 2; in vc_do_selection()
301 !atedge(new_sel_end, vc->vc_size_row) && in vc_do_selection()
305 atedge(pe, vc->vc_size_row)) in vc_do_selection()
363 ps = v->ys * vc->vc_size_row + (v->xs << 1); in vc_selection()
364 pe = v->ye * vc->vc_size_row + (v->xe << 1); in vc_selection()
H A Dvt.c532 int offset = row * vc->vc_size_row + col * 2; in vc_uniscr_copy_line()
545 row = (pos - vc->vc_origin) / vc->vc_size_row; in vc_uniscr_copy_line()
546 col = ((pos - vc->vc_origin) % vc->vc_size_row) / 2; in vc_uniscr_copy_line()
583 dst = (u16 *)(vc->vc_origin + vc->vc_size_row * (top + nr)); in con_scroll()
589 scr_memmovew(dst, src, (rows - nr) * vc->vc_size_row); in con_scroll()
1015 vc->vc_size_row = vc->vc_cols << 1; in visual_init()
1016 vc->vc_screenbuf_size = vc->vc_rows * vc->vc_size_row; in visual_init()
1190 old_row_size = vc->vc_size_row; in vc_do_resize()
1201 vc->vc_size_row = new_row_size; in vc_do_resize()
1446 vc->vc_pos += vc->vc_size_row; in lf()
[all …]
/linux-6.15/drivers/video/console/
H A Dnewport_con.c608 vc->vc_size_row * (t + lines)); in newport_scroll()
610 vc->vc_size_row * t); in newport_scroll()
624 vc->vc_size_row * (b - lines)); in newport_scroll()
643 vc->vc_size_row * (b - lines) - 2); in newport_scroll()
645 vc->vc_size_row * b - 2); in newport_scroll()
659 vc->vc_size_row * t); in newport_scroll()
H A Dvgacon.c144 int margin = c->vc_size_row * 4; in vgacon_scrolldelta()
156 wrap = vga_rolled_over + c->vc_size_row; in vgacon_scrolldelta()
162 from_off = (vorigin - from + wrap) % wrap + lines * c->vc_size_row; in vgacon_scrolldelta()
1150 delta = lines * c->vc_size_row; in vgacon_scroll()
/linux-6.15/drivers/accessibility/speakup/
H A Dmain.c799 spk_pos -= vc->vc_size_row; in say_prev_line()
811 spk_pos += vc->vc_size_row; in say_next_line()
827 if (i >= vc->vc_size_row) in say_from_to()
891 start = vc->vc_origin + ((spk_y) * vc->vc_size_row); in get_sentence_buf()
914 if (i >= vc->vc_size_row) in get_sentence_buf()
937 start += from * vc->vc_size_row; in say_screen_from_to()
940 end = vc->vc_origin + (to * vc->vc_size_row); in say_screen_from_to()
942 to = from + vc->vc_size_row; in say_screen_from_to()
960 start = vc->vc_origin + (win_top * vc->vc_size_row); in speakup_win_say()
966 start += vc->vc_size_row; in speakup_win_say()
[all …]
/linux-6.15/drivers/video/fbdev/core/
H A Dfbcon.c592 vc->vc_size_row * rows); in fbcon_prepare_logo()
637 vc->vc_size_row * in fbcon_prepare_logo()
1629 s -= vc->vc_size_row; in fbcon_redraw_blit()
1630 d -= vc->vc_size_row; in fbcon_redraw_blit()
1683 s -= vc->vc_size_row; in fbcon_redraw()
1684 d -= vc->vc_size_row; in fbcon_redraw()
1782 vc->vc_size_row * in fbcon_scroll()
1785 vc->vc_size_row * count); in fbcon_scroll()
1853 vc->vc_size_row * in fbcon_scroll()
1870 vc->vc_size_row * in fbcon_scroll()
[all …]
/linux-6.15/include/linux/
H A Dconsole_struct.h101 unsigned int vc_size_row; /* Bytes per row */ member
/linux-6.15/drivers/accessibility/braille/
H A Dbraille_console.c132 2 * (vc_x + i) + vc_y * vc->vc_size_row); in vc_refresh()