Home
last modified time | relevance | path

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

/drivers/video/fbdev/core/
Dfbcon.c1292 y_break = p->vrows - p->yscroll; in fbcon_clear()
1433 p->yscroll += count; in ywrap_up()
1434 if (p->yscroll >= p->vrows) /* Deal with wrap */ in ywrap_up()
1435 p->yscroll -= p->vrows; in ywrap_up()
1437 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_up()
1452 p->yscroll -= count; in ywrap_down()
1453 if (p->yscroll < 0) /* Deal with wrap */ in ywrap_down()
1454 p->yscroll += p->vrows; in ywrap_down()
1456 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_down()
1471 p->yscroll += count; in ypan_up()
[all …]
Dfbcon.h36 short yscroll; /* Hardware scrolling */ member
238 ypos += p->yscroll; in real_y()