Lines Matching refs:yscroll

1303 	y_break = p->vrows - p->yscroll;  in __fbcon_clear()
1442 p->yscroll += count; in ywrap_up()
1443 if (p->yscroll >= p->vrows) /* Deal with wrap */ in ywrap_up()
1444 p->yscroll -= p->vrows; in ywrap_up()
1446 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_up()
1461 p->yscroll -= count; in ywrap_down()
1462 if (p->yscroll < 0) /* Deal with wrap */ in ywrap_down()
1463 p->yscroll += p->vrows; in ywrap_down()
1465 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_down()
1480 p->yscroll += count; in ypan_up()
1481 if (p->yscroll > p->vrows - vc->vc_rows) { in ypan_up()
1484 p->yscroll -= p->vrows - vc->vc_rows; in ypan_up()
1488 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_up()
1504 p->yscroll += count; in ypan_up_redraw()
1506 if (p->yscroll > p->vrows - vc->vc_rows) { in ypan_up_redraw()
1507 p->yscroll -= p->vrows - vc->vc_rows; in ypan_up_redraw()
1512 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_up_redraw()
1528 p->yscroll -= count; in ypan_down()
1529 if (p->yscroll < 0) { in ypan_down()
1532 p->yscroll += p->vrows - vc->vc_rows; in ypan_down()
1536 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_down()
1552 p->yscroll -= count; in ypan_down_redraw()
1554 if (p->yscroll < 0) { in ypan_down_redraw()
1555 p->yscroll += p->vrows - vc->vc_rows; in ypan_down_redraw()
1560 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_down_redraw()
1770 p->vrows - p->yscroll); in fbcon_bmove()
1826 if ((p->yscroll + count <= in fbcon_scroll()
1844 if ((p->yscroll + count <= in fbcon_scroll()
1914 if ((count - p->yscroll <= p->vrows - vc->vc_rows) in fbcon_scroll()
1936 if ((count - p->yscroll <= p->vrows - vc->vc_rows) in fbcon_scroll()
2205 ops->var.xoffset = ops->var.yoffset = p->yscroll = 0; in fbcon_switch()
2705 ops->var.xoffset = ops->var.yoffset = p->yscroll = 0; in fbcon_modechanged()