Lines Matching refs:end
45 int end;
84 highlight(vc_sel.start, vc_sel.end);
195 bp = kmalloc_array((vc_sel.end - vc_sel.start) / 2 + 1, unicode ? 4 : 1,
206 for (i = vc_sel.start; i <= vc_sel.end; i += 2) {
216 unless non-space at end of line. */
276 /* select to end of line if on trailing space */
291 if (new_sel_end == vc_sel.end) /* no action required */
293 else if (new_sel_end > vc_sel.end) /* extend to right */
294 highlight(vc_sel.end + 2, new_sel_end);
296 highlight(new_sel_end + 2, vc_sel.end);
298 else if (new_sel_end == vc_sel.end)
311 vc_sel.end = new_sel_end;
342 if (ps > pe) /* make vc_sel.start <= vc_sel.end */