Lines Matching refs:yscroll
1302 y_break = p->vrows - p->yscroll; in fbcon_clear()
1451 p->yscroll += count; in ywrap_up()
1452 if (p->yscroll >= p->vrows) /* Deal with wrap */ in ywrap_up()
1453 p->yscroll -= p->vrows; in ywrap_up()
1455 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_up()
1470 p->yscroll -= count; in ywrap_down()
1471 if (p->yscroll < 0) /* Deal with wrap */ in ywrap_down()
1472 p->yscroll += p->vrows; in ywrap_down()
1474 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_down()
1489 p->yscroll += count; in ypan_up()
1490 if (p->yscroll > p->vrows - vc->vc_rows) { in ypan_up()
1493 p->yscroll -= p->vrows - vc->vc_rows; in ypan_up()
1497 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_up()
1513 p->yscroll += count; in ypan_up_redraw()
1515 if (p->yscroll > p->vrows - vc->vc_rows) { in ypan_up_redraw()
1516 p->yscroll -= p->vrows - vc->vc_rows; in ypan_up_redraw()
1521 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_up_redraw()
1537 p->yscroll -= count; in ypan_down()
1538 if (p->yscroll < 0) { in ypan_down()
1541 p->yscroll += p->vrows - vc->vc_rows; in ypan_down()
1545 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_down()
1561 p->yscroll -= count; in ypan_down_redraw()
1563 if (p->yscroll < 0) { in ypan_down_redraw()
1564 p->yscroll += p->vrows - vc->vc_rows; in ypan_down_redraw()
1569 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_down_redraw()
1894 if ((p->yscroll + count <= in fbcon_scroll()
1912 if ((p->yscroll + count <= in fbcon_scroll()
1985 if ((count - p->yscroll <= p->vrows - vc->vc_rows) in fbcon_scroll()
2007 if ((count - p->yscroll <= p->vrows - vc->vc_rows) in fbcon_scroll()
2060 p->vrows - p->yscroll); in fbcon_bmove()
2316 ops->var.xoffset = ops->var.yoffset = p->yscroll = 0; in fbcon_switch()
2878 offset = disp->yscroll - scrollback_current; in fbcon_scrolldelta()
2964 ops->var.xoffset = ops->var.yoffset = p->yscroll = 0; in fbcon_modechanged()