Home
last modified time | relevance | path

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

/drivers/tty/vt/
Dvt.c4765 int from, wrap, from_off, avail; in vc_scrolldelta_helper() local
4782 from_off = (vorigin - from + wrap) % wrap + lines * c->vc_size_row; in vc_scrolldelta_helper()
4788 if (from_off < margin) in vc_scrolldelta_helper()
4789 from_off = 0; in vc_scrolldelta_helper()
4790 if (from_off > avail - margin) in vc_scrolldelta_helper()
4791 from_off = avail; in vc_scrolldelta_helper()
4793 c->vc_visible_origin = ubase + (from + from_off) % wrap; in vc_scrolldelta_helper()