Lines Matching refs:yscroll
1320 y_break = p->vrows - p->yscroll; in __fbcon_clear()
1459 p->yscroll += count; in ywrap_up()
1460 if (p->yscroll >= p->vrows) /* Deal with wrap */ in ywrap_up()
1461 p->yscroll -= p->vrows; in ywrap_up()
1463 par->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_up()
1478 p->yscroll -= count; in ywrap_down()
1479 if (p->yscroll < 0) /* Deal with wrap */ in ywrap_down()
1480 p->yscroll += p->vrows; in ywrap_down()
1482 par->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_down()
1497 p->yscroll += count; in ypan_up()
1498 if (p->yscroll > p->vrows - vc->vc_rows) { in ypan_up()
1501 p->yscroll -= p->vrows - vc->vc_rows; in ypan_up()
1505 par->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_up()
1521 p->yscroll += count; in ypan_up_redraw()
1523 if (p->yscroll > p->vrows - vc->vc_rows) { in ypan_up_redraw()
1524 p->yscroll -= p->vrows - vc->vc_rows; in ypan_up_redraw()
1529 par->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_up_redraw()
1545 p->yscroll -= count; in ypan_down()
1546 if (p->yscroll < 0) { in ypan_down()
1549 p->yscroll += p->vrows - vc->vc_rows; in ypan_down()
1553 par->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_down()
1569 p->yscroll -= count; in ypan_down_redraw()
1571 if (p->yscroll < 0) { in ypan_down_redraw()
1572 p->yscroll += p->vrows - vc->vc_rows; in ypan_down_redraw()
1577 par->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_down_redraw()
1781 p->vrows - p->yscroll); in fbcon_bmove()
1837 if ((p->yscroll + count <= in fbcon_scroll()
1855 if ((p->yscroll + count <= in fbcon_scroll()
1925 if ((count - p->yscroll <= p->vrows - vc->vc_rows) in fbcon_scroll()
1947 if ((count - p->yscroll <= p->vrows - vc->vc_rows) in fbcon_scroll()
2210 par->var.xoffset = par->var.yoffset = p->yscroll = 0; in fbcon_switch()
2694 par->var.xoffset = par->var.yoffset = p->yscroll = 0; in fbcon_modechanged()