Lines Matching refs:yscroll

1262 	y_break = p->vrows - p->yscroll;  in fbcon_clear()
1409 p->yscroll += count; in ywrap_up()
1410 if (p->yscroll >= p->vrows) /* Deal with wrap */ in ywrap_up()
1411 p->yscroll -= p->vrows; in ywrap_up()
1413 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_up()
1428 p->yscroll -= count; in ywrap_down()
1429 if (p->yscroll < 0) /* Deal with wrap */ in ywrap_down()
1430 p->yscroll += p->vrows; in ywrap_down()
1432 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_down()
1447 p->yscroll += count; in ypan_up()
1448 if (p->yscroll > p->vrows - vc->vc_rows) { in ypan_up()
1451 p->yscroll -= p->vrows - vc->vc_rows; in ypan_up()
1455 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_up()
1471 p->yscroll += count; in ypan_up_redraw()
1473 if (p->yscroll > p->vrows - vc->vc_rows) { in ypan_up_redraw()
1474 p->yscroll -= p->vrows - vc->vc_rows; in ypan_up_redraw()
1479 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_up_redraw()
1495 p->yscroll -= count; in ypan_down()
1496 if (p->yscroll < 0) { in ypan_down()
1499 p->yscroll += p->vrows - vc->vc_rows; in ypan_down()
1503 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_down()
1519 p->yscroll -= count; in ypan_down_redraw()
1521 if (p->yscroll < 0) { in ypan_down_redraw()
1522 p->yscroll += p->vrows - vc->vc_rows; in ypan_down_redraw()
1527 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_down_redraw()
1852 if ((p->yscroll + count <= in fbcon_scroll()
1870 if ((p->yscroll + count <= in fbcon_scroll()
1943 if ((count - p->yscroll <= p->vrows - vc->vc_rows) in fbcon_scroll()
1965 if ((count - p->yscroll <= p->vrows - vc->vc_rows) in fbcon_scroll()
2018 p->vrows - p->yscroll); in fbcon_bmove()
2274 ops->var.xoffset = ops->var.yoffset = p->yscroll = 0; in fbcon_switch()
2827 offset = disp->yscroll - scrollback_current; in fbcon_scrolldelta()
2914 ops->var.xoffset = ops->var.yoffset = p->yscroll = 0; in fbcon_modechanged()