Home
last modified time | relevance | path

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

/linux/drivers/tty/vt/
H A Dselection.c236 if (!((i + 2) % vc->vc_size_row)) { in vc_selection_store_chars()
269 if (!(ps % vc->vc_size_row)) in vc_do_selection()
279 if (!((pe + 2) % vc->vc_size_row)) in vc_do_selection()
284 new_sel_start = rounddown(ps, vc->vc_size_row); in vc_do_selection()
285 new_sel_end = rounddown(pe, vc->vc_size_row) + in vc_do_selection()
286 vc->vc_size_row - 2; in vc_do_selection()
300 !atedge(new_sel_end, vc->vc_size_row) && in vc_do_selection()
304 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.c535 int offset = row * vc->vc_size_row + col * 2; in vc_uniscr_copy_line()
548 row = (pos - vc->vc_origin) / vc->vc_size_row; in vc_uniscr_copy_line()
549 col = ((pos - vc->vc_origin) % vc->vc_size_row) / 2; in vc_uniscr_copy_line()
585 src = clear = (u16 *)(vc->vc_origin + vc->vc_size_row * top); in con_scroll()
586 dst = (u16 *)(vc->vc_origin + vc->vc_size_row * (top + nr)); in con_scroll()
592 scr_memmovew(dst, src, (rows - nr) * vc->vc_size_row); in con_scroll()
593 scr_memsetw(clear, vc->vc_video_erase_char, vc->vc_size_row * nr); in con_scroll()
877 vc->vc_pos = vc->vc_origin + vc->vc_size_row * vc->state.y + in set_origin()
1018 vc->vc_size_row = vc->vc_cols << 1; in visual_init()
1019 vc->vc_screenbuf_size = vc->vc_rows * vc->vc_size_row; in visual_init()
[all …]
/linux/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()
848 u_long start = vc->vc_origin + (spk_y * vc->vc_size_row); in say_line_from_to()
891 start = vc->vc_origin + ((spk_y) * vc->vc_size_row); in get_sentence_buf()
892 end = vc->vc_origin + ((spk_y) * vc->vc_size_row) + vc->vc_cols * 2; 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()
[all …]
/linux/drivers/video/fbdev/core/
H A Dfbcon.c176 #define advance_row(p, delta) (unsigned short *)((unsigned long)(p) + (delta) * vc->vc_size_row)
625 vc->vc_size_row * rows); in fbcon_prepare_logo()
646 scr_memcpyw(r + step, r, vc->vc_size_row); in fbcon_prepare_logo()
656 vc->vc_pos += lines * vc->vc_size_row; in fbcon_prepare_logo()
661 vc->vc_size_row * logo_lines); in fbcon_prepare_logo()
670 vc->vc_size_row * in fbcon_prepare_logo()
674 vc->vc_pos += logo_lines * vc->vc_size_row; in fbcon_prepare_logo()
1591 (vc->vc_origin + vc->vc_size_row * line); in fbcon_redraw_move()
1624 (vc->vc_origin + vc->vc_size_row * line); in fbcon_redraw_blit()
1661 s -= vc->vc_size_row; in fbcon_redraw_blit()
[all …]
/linux/include/linux/
H A Dconsole_struct.h101 unsigned int vc_size_row; /* Bytes per row */ member
/linux/drivers/video/console/
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/drivers/accessibility/braille/
H A Dbraille_console.c132 2 * (vc_x + i) + vc_y * vc->vc_size_row); in vc_refresh()