Lines Matching refs:roffset
73 int diff, top, bottom, roffset; in vthistory_seek() local
90 roffset = 0; /* Make gcc happy. */ in vthistory_seek()
95 roffset = top + offset; in vthistory_seek()
102 roffset = vb->vb_roffset; in vthistory_seek()
103 if (roffset >= bottom + vb->vb_scr_size.tp_row) in vthistory_seek()
104 roffset -= vb->vb_history_size; in vthistory_seek()
106 roffset += offset; in vthistory_seek()
107 roffset = MAX(roffset, top); in vthistory_seek()
108 roffset = MIN(roffset, bottom); in vthistory_seek()
110 if (roffset < 0) in vthistory_seek()
111 roffset = vb->vb_history_size + roffset; in vthistory_seek()
116 roffset = vb->vb_curroffset; in vthistory_seek()
120 diff = vb->vb_roffset != roffset; in vthistory_seek()
121 vb->vb_roffset = roffset; in vthistory_seek()