Lines Matching refs:below
2172 int below = 0; in scroll_cursor_halfway() local
2198 if (below <= above) // add a line below the cursor first in scroll_cursor_halfway()
2206 below += boff.height; in scroll_cursor_halfway()
2210 ++below; // count a "~" line in scroll_cursor_halfway()
2216 if (below > above) // add a line above the cursor in scroll_cursor_halfway()
2257 int below = 0; // screen lines below botline in cursor_correct() local
2316 below = curwin->w_filler_rows; in cursor_correct()
2318 while ((above < above_wanted || below < below_wanted) && topline < botline) in cursor_correct()
2320 if (below < below_wanted && (below <= above || above >= above_wanted)) in cursor_correct()
2324 ++below; in cursor_correct()
2327 below += plines(botline); in cursor_correct()
2330 if (above < above_wanted && (above < below || below >= below_wanted)) in cursor_correct()