Lines Matching refs:yscroll
1265 y_break = p->vrows - p->yscroll; in fbcon_clear()
1414 p->yscroll += count; in ywrap_up()
1415 if (p->yscroll >= p->vrows) /* Deal with wrap */ in ywrap_up()
1416 p->yscroll -= p->vrows; in ywrap_up()
1418 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_up()
1433 p->yscroll -= count; in ywrap_down()
1434 if (p->yscroll < 0) /* Deal with wrap */ in ywrap_down()
1435 p->yscroll += p->vrows; in ywrap_down()
1437 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_down()
1452 p->yscroll += count; in ypan_up()
1453 if (p->yscroll > p->vrows - vc->vc_rows) { in ypan_up()
1456 p->yscroll -= p->vrows - vc->vc_rows; in ypan_up()
1460 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_up()
1476 p->yscroll += count; in ypan_up_redraw()
1478 if (p->yscroll > p->vrows - vc->vc_rows) { in ypan_up_redraw()
1479 p->yscroll -= p->vrows - vc->vc_rows; in ypan_up_redraw()
1484 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_up_redraw()
1500 p->yscroll -= count; in ypan_down()
1501 if (p->yscroll < 0) { in ypan_down()
1504 p->yscroll += p->vrows - vc->vc_rows; in ypan_down()
1508 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_down()
1524 p->yscroll -= count; in ypan_down_redraw()
1526 if (p->yscroll < 0) { in ypan_down_redraw()
1527 p->yscroll += p->vrows - vc->vc_rows; in ypan_down_redraw()
1532 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_down_redraw()
1857 if ((p->yscroll + count <= in fbcon_scroll()
1875 if ((p->yscroll + count <= in fbcon_scroll()
1948 if ((count - p->yscroll <= p->vrows - vc->vc_rows) in fbcon_scroll()
1970 if ((count - p->yscroll <= p->vrows - vc->vc_rows) in fbcon_scroll()
2023 p->vrows - p->yscroll); in fbcon_bmove()
2279 ops->var.xoffset = ops->var.yoffset = p->yscroll = 0; in fbcon_switch()
2832 offset = disp->yscroll - scrollback_current; in fbcon_scrolldelta()
2919 ops->var.xoffset = ops->var.yoffset = p->yscroll = 0; in fbcon_modechanged()