Lines Matching refs:linelongs
1332 int linelongs, col; in vc_clear_screen() local
1339 linelongs = vinfo.v_rowbytes * (ISO_CHAR_HEIGHT >> 2); in vc_clear_screen()
1350 p += (yy + 1) * linelongs; in vc_clear_screen()
1351 endp += scrreg_bottom * linelongs; in vc_clear_screen()
1357 p += scrreg_top * linelongs; in vc_clear_screen()
1358 endp += yy * linelongs; in vc_clear_screen()
1362 p += scrreg_top * linelongs; in vc_clear_screen()
1366 endp += scrreg_bottom * linelongs; in vc_clear_screen()
1737 uint32_t *from, *to, linelongs, i, line, rowline, rowscanline; in vc_scroll_down() local
1743 linelongs = vinfo.v_rowbytes * (ISO_CHAR_HEIGHT >> 2); in vc_scroll_down()
1747 to = (uint32_t *) vinfo.v_baseaddr + (linelongs * scrreg_bottom) in vc_scroll_down()
1749 from = to - (linelongs * num); /* handle multiple line scroll (Michel Pollet) */ in vc_scroll_down()
1771 uint32_t *from, *to, linelongs, i, line, rowline, rowscanline; in vc_scroll_up() local
1777 linelongs = vinfo.v_rowbytes * (ISO_CHAR_HEIGHT >> 2); in vc_scroll_up()
1781 to = (uint32_t *) vinfo.v_baseaddr + (scrreg_top * linelongs); in vc_scroll_up()
1782 from = to + (linelongs * num); /* handle multiple line scroll (Michel Pollet) */ in vc_scroll_up()