Lines Matching refs:yscroll
1278 y_break = p->vrows - p->yscroll; in fbcon_clear()
1418 p->yscroll += count; in ywrap_up()
1419 if (p->yscroll >= p->vrows) /* Deal with wrap */ in ywrap_up()
1420 p->yscroll -= p->vrows; in ywrap_up()
1422 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_up()
1437 p->yscroll -= count; in ywrap_down()
1438 if (p->yscroll < 0) /* Deal with wrap */ in ywrap_down()
1439 p->yscroll += p->vrows; in ywrap_down()
1441 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_down()
1456 p->yscroll += count; in ypan_up()
1457 if (p->yscroll > p->vrows - vc->vc_rows) { in ypan_up()
1460 p->yscroll -= p->vrows - vc->vc_rows; in ypan_up()
1464 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_up()
1480 p->yscroll += count; in ypan_up_redraw()
1482 if (p->yscroll > p->vrows - vc->vc_rows) { in ypan_up_redraw()
1483 p->yscroll -= p->vrows - vc->vc_rows; in ypan_up_redraw()
1488 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_up_redraw()
1504 p->yscroll -= count; in ypan_down()
1505 if (p->yscroll < 0) { in ypan_down()
1508 p->yscroll += p->vrows - vc->vc_rows; in ypan_down()
1512 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_down()
1528 p->yscroll -= count; in ypan_down_redraw()
1530 if (p->yscroll < 0) { in ypan_down_redraw()
1531 p->yscroll += p->vrows - vc->vc_rows; in ypan_down_redraw()
1536 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_down_redraw()
1740 if ((p->yscroll + count <= in fbcon_scroll()
1758 if ((p->yscroll + count <= in fbcon_scroll()
1830 if ((count - p->yscroll <= p->vrows - vc->vc_rows) in fbcon_scroll()
1852 if ((count - p->yscroll <= p->vrows - vc->vc_rows) in fbcon_scroll()
1905 p->vrows - p->yscroll); in fbcon_bmove()
2141 ops->var.xoffset = ops->var.yoffset = p->yscroll = 0; in fbcon_switch()
2646 ops->var.xoffset = ops->var.yoffset = p->yscroll = 0; in fbcon_modechanged()