Lines Matching refs:yscroll
1335 y_break = p->vrows - p->yscroll; in fbcon_clear()
1484 p->yscroll += count; in ywrap_up()
1485 if (p->yscroll >= p->vrows) /* Deal with wrap */ in ywrap_up()
1486 p->yscroll -= p->vrows; in ywrap_up()
1488 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_up()
1503 p->yscroll -= count; in ywrap_down()
1504 if (p->yscroll < 0) /* Deal with wrap */ in ywrap_down()
1505 p->yscroll += p->vrows; in ywrap_down()
1507 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_down()
1522 p->yscroll += count; in ypan_up()
1523 if (p->yscroll > p->vrows - vc->vc_rows) { in ypan_up()
1526 p->yscroll -= p->vrows - vc->vc_rows; in ypan_up()
1530 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_up()
1546 p->yscroll += count; in ypan_up_redraw()
1548 if (p->yscroll > p->vrows - vc->vc_rows) { in ypan_up_redraw()
1549 p->yscroll -= p->vrows - vc->vc_rows; in ypan_up_redraw()
1554 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_up_redraw()
1570 p->yscroll -= count; in ypan_down()
1571 if (p->yscroll < 0) { in ypan_down()
1574 p->yscroll += p->vrows - vc->vc_rows; in ypan_down()
1578 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_down()
1594 p->yscroll -= count; in ypan_down_redraw()
1596 if (p->yscroll < 0) { in ypan_down_redraw()
1597 p->yscroll += p->vrows - vc->vc_rows; in ypan_down_redraw()
1602 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ypan_down_redraw()
1927 if ((p->yscroll + count <= in fbcon_scroll()
1945 if ((p->yscroll + count <= in fbcon_scroll()
2018 if ((count - p->yscroll <= p->vrows - vc->vc_rows) in fbcon_scroll()
2040 if ((count - p->yscroll <= p->vrows - vc->vc_rows) in fbcon_scroll()
2093 p->vrows - p->yscroll); in fbcon_bmove()
2349 ops->var.xoffset = ops->var.yoffset = p->yscroll = 0; in fbcon_switch()
2900 offset = disp->yscroll - scrollback_current; in fbcon_scrolldelta()
2986 ops->var.xoffset = ops->var.yoffset = p->yscroll = 0; in fbcon_modechanged()