Lines Matching refs:yscroll
1288 y_break = p->vrows - p->yscroll; in fbcon_clear()
1426 p->yscroll += count; in ywrap_up()
1427 if (p->yscroll >= p->vrows) /* Deal with wrap */ in ywrap_up()
1428 p->yscroll -= p->vrows; in ywrap_up()
1430 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_up()
1445 p->yscroll -= count; in ywrap_down()
1446 if (p->yscroll < 0) /* Deal with wrap */ in ywrap_down()
1447 p->yscroll += p->vrows; in ywrap_down()
1449 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_down()
1464 p->yscroll += count; in ypan_up()
1465 if (p->yscroll > p->vrows - vc->vc_rows) { in ypan_up()
1468 p->yscroll -= p->vrows - vc->vc_rows; in ypan_up()
1472 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_up()
1488 p->yscroll += count; in ypan_up_redraw()
1490 if (p->yscroll > p->vrows - vc->vc_rows) { in ypan_up_redraw()
1491 p->yscroll -= p->vrows - vc->vc_rows; in ypan_up_redraw()
1496 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_up_redraw()
1512 p->yscroll -= count; in ypan_down()
1513 if (p->yscroll < 0) { in ypan_down()
1516 p->yscroll += p->vrows - vc->vc_rows; in ypan_down()
1520 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_down()
1536 p->yscroll -= count; in ypan_down_redraw()
1538 if (p->yscroll < 0) { in ypan_down_redraw()
1539 p->yscroll += p->vrows - vc->vc_rows; in ypan_down_redraw()
1544 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_down_redraw()
1748 if ((p->yscroll + count <= in fbcon_scroll()
1766 if ((p->yscroll + count <= in fbcon_scroll()
1838 if ((count - p->yscroll <= p->vrows - vc->vc_rows) in fbcon_scroll()
1860 if ((count - p->yscroll <= p->vrows - vc->vc_rows) in fbcon_scroll()
1913 p->vrows - p->yscroll); in fbcon_bmove()
2182 ops->var.xoffset = ops->var.yoffset = p->yscroll = 0; in fbcon_switch()
2700 ops->var.xoffset = ops->var.yoffset = p->yscroll = 0; in fbcon_modechanged()