Home
last modified time | relevance | path

Searched refs:yscroll (Results 1 – 2 of 2) sorted by relevance

/linux-4.4.14/drivers/video/console/
Dfbcon.c1265 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()
[all …]
Dfbcon.h34 short yscroll; /* Hardware scrolling */ member
231 ypos += p->yscroll; in real_y()