Lines Matching refs:yscroll
1285 y_break = p->vrows - p->yscroll; in __fbcon_clear()
1423 p->yscroll += count; in ywrap_up()
1424 if (p->yscroll >= p->vrows) /* Deal with wrap */ in ywrap_up()
1425 p->yscroll -= p->vrows; in ywrap_up()
1427 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_up()
1442 p->yscroll -= count; in ywrap_down()
1443 if (p->yscroll < 0) /* Deal with wrap */ in ywrap_down()
1444 p->yscroll += p->vrows; in ywrap_down()
1446 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_down()
1461 p->yscroll += count; in ypan_up()
1462 if (p->yscroll > p->vrows - vc->vc_rows) { in ypan_up()
1465 p->yscroll -= p->vrows - vc->vc_rows; in ypan_up()
1469 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_up()
1485 p->yscroll += count; in ypan_up_redraw()
1487 if (p->yscroll > p->vrows - vc->vc_rows) { in ypan_up_redraw()
1488 p->yscroll -= p->vrows - vc->vc_rows; in ypan_up_redraw()
1493 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_up_redraw()
1509 p->yscroll -= count; in ypan_down()
1510 if (p->yscroll < 0) { in ypan_down()
1513 p->yscroll += p->vrows - vc->vc_rows; in ypan_down()
1517 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_down()
1533 p->yscroll -= count; in ypan_down_redraw()
1535 if (p->yscroll < 0) { in ypan_down_redraw()
1536 p->yscroll += p->vrows - vc->vc_rows; in ypan_down_redraw()
1541 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_down_redraw()
1751 p->vrows - p->yscroll); in fbcon_bmove()
1807 if ((p->yscroll + count <= in fbcon_scroll()
1825 if ((p->yscroll + count <= in fbcon_scroll()
1895 if ((count - p->yscroll <= p->vrows - vc->vc_rows) in fbcon_scroll()
1917 if ((count - p->yscroll <= p->vrows - vc->vc_rows) in fbcon_scroll()
2186 ops->var.xoffset = ops->var.yoffset = p->yscroll = 0; in fbcon_switch()
2686 ops->var.xoffset = ops->var.yoffset = p->yscroll = 0; in fbcon_modechanged()