Lines Matching refs:end
45 int end;
85 highlight(vc_sel.start, vc_sel.end);
196 bp = kmalloc_array((vc_sel.end - vc_sel.start) / 2 + 1, unicode ? 4 : 1,
207 for (i = vc_sel.start; i <= vc_sel.end; i += 2) {
217 unless non-space at end of line. */
277 /* select to end of line if on trailing space */
292 if (new_sel_end == vc_sel.end) /* no action required */
294 else if (new_sel_end > vc_sel.end) /* extend to right */
295 highlight(vc_sel.end + 2, new_sel_end);
297 highlight(new_sel_end + 2, vc_sel.end);
299 else if (new_sel_end == vc_sel.end)
312 vc_sel.end = new_sel_end;
343 if (ps > pe) /* make vc_sel.start <= vc_sel.end */