Searched refs:vc_size_row (Results 1 – 11 of 11) sorted by relevance
| /linux-4.4.14/drivers/tty/vt/ |
| D | selection.c | 184 ps = ys * vc->vc_size_row + (xs << 1); in set_selection() 185 pe = ye * vc->vc_size_row + (xe << 1); in set_selection() 230 if (!(ps % vc->vc_size_row)) in set_selection() 240 if (!((pe + 2) % vc->vc_size_row)) in set_selection() 245 new_sel_start = ps - ps % vc->vc_size_row; in set_selection() 246 new_sel_end = pe + vc->vc_size_row in set_selection() 247 - pe % vc->vc_size_row - 2; in set_selection() 261 !atedge(new_sel_end, vc->vc_size_row) && in set_selection() 265 atedge(pe, vc->vc_size_row)) in set_selection() 316 if (! ((i + 2) % vc->vc_size_row)) { in set_selection()
|
| D | vt.c | 326 d = (unsigned short *)(vc->vc_origin + vc->vc_size_row * t); in scrup() 327 s = (unsigned short *)(vc->vc_origin + vc->vc_size_row * (t + nr)); in scrup() 328 scr_memmovew(d, s, (b - t - nr) * vc->vc_size_row); in scrup() 330 vc->vc_size_row * nr); in scrup() 344 s = (unsigned short *)(vc->vc_origin + vc->vc_size_row * t); in scrdown() 346 scr_memmovew(s + step, s, (b - t - nr) * vc->vc_size_row); in scrdown() 634 vc->vc_pos = vc->vc_origin + vc->vc_size_row * vc->vc_y + 2 * vc->vc_x; in set_origin() 757 vc->vc_size_row = vc->vc_cols << 1; in visual_init() 758 vc->vc_screenbuf_size = vc->vc_rows * vc->vc_size_row; in visual_init() 879 old_row_size = vc->vc_size_row; in vc_do_resize() [all …]
|
| /linux-4.4.14/drivers/staging/speakup/ |
| D | selection.c | 63 ps = spk_ys * vc->vc_size_row + (spk_xs << 1); in speakup_set_selection() 64 pe = spk_ye * vc->vc_size_row + (spk_xe << 1); in speakup_set_selection() 87 !atedge(new_sel_end, vc->vc_size_row) && in speakup_set_selection() 91 atedge(pe, vc->vc_size_row)) in speakup_set_selection() 115 if (!((i + 2) % vc->vc_size_row)) { in speakup_set_selection()
|
| D | main.c | 790 spk_pos -= vc->vc_size_row; in say_prev_line() 802 spk_pos += vc->vc_size_row; in say_next_line() 818 if (i >= vc->vc_size_row) in say_from_to() 839 u_long start = vc->vc_origin + (spk_y * vc->vc_size_row); in say_line_from_to() 882 start = vc->vc_origin + ((spk_y) * vc->vc_size_row); in get_sentence_buf() 883 end = vc->vc_origin + ((spk_y) * vc->vc_size_row) + vc->vc_cols * 2; in get_sentence_buf() 904 if (i >= vc->vc_size_row) in get_sentence_buf() 927 start += from * vc->vc_size_row; in say_screen_from_to() 930 end = vc->vc_origin + (to * vc->vc_size_row); in say_screen_from_to() 932 to = from + vc->vc_size_row; in say_screen_from_to() [all …]
|
| /linux-4.4.14/drivers/video/console/ |
| D | vgacon.c | 220 p = (void *) (c->vc_origin + t * c->vc_size_row); in vgacon_scrollback_update() 224 p, c->vc_size_row); in vgacon_scrollback_update() 226 p += c->vc_size_row; in vgacon_scrollback_update() 227 vgacon_scrollback_tail += c->vc_size_row; in vgacon_scrollback_update() 290 c->vc_size_row); in vgacon_scrolldelta() 291 soff -= count * c->vc_size_row; in vgacon_scrolldelta() 308 count *= c->vc_size_row; in vgacon_scrolldelta() 321 scr_memcpyw(d, s, diff * c->vc_size_row); in vgacon_scrolldelta() 343 int margin = c->vc_size_row * 4; in vgacon_scrolldelta() 349 we = vga_rolled_over + c->vc_size_row; in vgacon_scrolldelta() [all …]
|
| D | fbcon.c | 145 #define advance_row(p, delta) (unsigned short *)((unsigned long)(p) + (delta) * vc->vc_size_row) 355 int l = fbcon_softback_size / vc->vc_size_row; in fbcon_update_softback() 358 softback_end = softback_buf + l * vc->vc_size_row; in fbcon_update_softback() 585 vc->vc_size_row * rows); in fbcon_prepare_logo() 605 scr_memcpyw(r + step, r, vc->vc_size_row); in fbcon_prepare_logo() 615 vc->vc_pos += lines * vc->vc_size_row; in fbcon_prepare_logo() 620 vc->vc_size_row * logo_lines); in fbcon_prepare_logo() 629 vc->vc_size_row * in fbcon_prepare_logo() 633 vc->vc_pos += logo_lines * vc->vc_size_row; in fbcon_prepare_logo() 1553 n = softback_curr + delta * vc->vc_size_row; in fbcon_redraw_softback() [all …]
|
| D | newport_con.c | 617 vc->vc_size_row * (t + lines)); in newport_scroll() 619 vc->vc_size_row * t); in newport_scroll() 633 vc->vc_size_row * (b - lines)); in newport_scroll() 652 vc->vc_size_row * (b - lines) - 2); in newport_scroll() 654 vc->vc_size_row * b - 2); in newport_scroll() 668 vc->vc_size_row * t); in newport_scroll()
|
| D | sticon.c | 271 line = offset / conp->vc_size_row; in sticon_screen_pos() 273 return (u16 *)(conp->vc_origin + offset - softback_lines * conp->vc_size_row); in sticon_screen_pos()
|
| /linux-4.4.14/include/linux/ |
| D | console_struct.h | 30 unsigned int vc_size_row; /* Bytes per row */ member
|
| /linux-4.4.14/drivers/usb/misc/sisusbvga/ |
| D | sisusb_con.c | 730 int margin = c->vc_size_row * 4; in sisusbcon_scrolldelta() 754 we = sisusb->con_rolled_over + c->vc_size_row; in sisusbcon_scrolldelta() 764 lines * c->vc_size_row; in sisusbcon_scrolldelta() 909 unsigned int delta = lines * c->vc_size_row; in sisusbcon_scroll()
|
| /linux-4.4.14/drivers/accessibility/braille/ |
| D | braille_console.c | 146 2 * (vc_x + i) + vc_y * vc->vc_size_row); in vc_refresh()
|