Lines Matching refs:yscroll

1264 	y_break = p->vrows - p->yscroll;  in fbcon_clear()
1404 p->yscroll += count; in ywrap_up()
1405 if (p->yscroll >= p->vrows) /* Deal with wrap */ in ywrap_up()
1406 p->yscroll -= p->vrows; in ywrap_up()
1408 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_up()
1423 p->yscroll -= count; in ywrap_down()
1424 if (p->yscroll < 0) /* Deal with wrap */ in ywrap_down()
1425 p->yscroll += p->vrows; in ywrap_down()
1427 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_down()
1442 p->yscroll += count; in ypan_up()
1443 if (p->yscroll > p->vrows - vc->vc_rows) { in ypan_up()
1446 p->yscroll -= p->vrows - vc->vc_rows; in ypan_up()
1450 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_up()
1466 p->yscroll += count; in ypan_up_redraw()
1468 if (p->yscroll > p->vrows - vc->vc_rows) { in ypan_up_redraw()
1469 p->yscroll -= p->vrows - vc->vc_rows; in ypan_up_redraw()
1474 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_up_redraw()
1490 p->yscroll -= count; in ypan_down()
1491 if (p->yscroll < 0) { in ypan_down()
1494 p->yscroll += p->vrows - vc->vc_rows; in ypan_down()
1498 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_down()
1514 p->yscroll -= count; in ypan_down_redraw()
1516 if (p->yscroll < 0) { in ypan_down_redraw()
1517 p->yscroll += p->vrows - vc->vc_rows; in ypan_down_redraw()
1522 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_down_redraw()
1732 p->vrows - p->yscroll); in fbcon_bmove()
1788 if ((p->yscroll + count <= in fbcon_scroll()
1806 if ((p->yscroll + count <= in fbcon_scroll()
1876 if ((count - p->yscroll <= p->vrows - vc->vc_rows) in fbcon_scroll()
1898 if ((count - p->yscroll <= p->vrows - vc->vc_rows) in fbcon_scroll()
2167 ops->var.xoffset = ops->var.yoffset = p->yscroll = 0; in fbcon_switch()
2698 ops->var.xoffset = ops->var.yoffset = p->yscroll = 0; in fbcon_modechanged()