Lines Matching refs:yscroll
1284 y_break = p->vrows - p->yscroll; in __fbcon_clear()
1422 p->yscroll += count; in ywrap_up()
1423 if (p->yscroll >= p->vrows) /* Deal with wrap */ in ywrap_up()
1424 p->yscroll -= p->vrows; in ywrap_up()
1426 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_up()
1441 p->yscroll -= count; in ywrap_down()
1442 if (p->yscroll < 0) /* Deal with wrap */ in ywrap_down()
1443 p->yscroll += p->vrows; in ywrap_down()
1445 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_down()
1460 p->yscroll += count; in ypan_up()
1461 if (p->yscroll > p->vrows - vc->vc_rows) { in ypan_up()
1464 p->yscroll -= p->vrows - vc->vc_rows; in ypan_up()
1468 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_up()
1484 p->yscroll += count; in ypan_up_redraw()
1486 if (p->yscroll > p->vrows - vc->vc_rows) { in ypan_up_redraw()
1487 p->yscroll -= p->vrows - vc->vc_rows; in ypan_up_redraw()
1492 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_up_redraw()
1508 p->yscroll -= count; in ypan_down()
1509 if (p->yscroll < 0) { in ypan_down()
1512 p->yscroll += p->vrows - vc->vc_rows; in ypan_down()
1516 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_down()
1532 p->yscroll -= count; in ypan_down_redraw()
1534 if (p->yscroll < 0) { in ypan_down_redraw()
1535 p->yscroll += p->vrows - vc->vc_rows; in ypan_down_redraw()
1540 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_down_redraw()
1750 p->vrows - p->yscroll); in fbcon_bmove()
1806 if ((p->yscroll + count <= in fbcon_scroll()
1824 if ((p->yscroll + count <= in fbcon_scroll()
1894 if ((count - p->yscroll <= p->vrows - vc->vc_rows) in fbcon_scroll()
1916 if ((count - p->yscroll <= p->vrows - vc->vc_rows) in fbcon_scroll()
2185 ops->var.xoffset = ops->var.yoffset = p->yscroll = 0; in fbcon_switch()
2685 ops->var.xoffset = ops->var.yoffset = p->yscroll = 0; in fbcon_modechanged()