Home
last modified time | relevance | path

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

/drivers/tty/vt/
Dselection.c40 static int sel_end; variable
76 highlight(sel_start, sel_end); in clear_selection()
274 if (new_sel_end == sel_end) /* no action required */ in set_selection()
276 else if (new_sel_end > sel_end) /* extend to right */ in set_selection()
277 highlight(sel_end + 2, new_sel_end); in set_selection()
279 highlight(new_sel_end + 2, sel_end); in set_selection()
281 else if (new_sel_end == sel_end) in set_selection()
294 sel_end = new_sel_end; in set_selection()
298 bp = kmalloc(((sel_end-sel_start)/2+1)*multiplier, GFP_KERNEL); in set_selection()
308 for (i = sel_start; i <= sel_end; i += 2) { in set_selection()
/drivers/staging/speakup/
Dselection.c25 static int sel_end; variable
96 if ((new_sel_start == sel_start) && (new_sel_end == sel_end)) in speakup_set_selection()
100 sel_end = new_sel_end; in speakup_set_selection()
102 bp = kmalloc((sel_end-sel_start)/2+1, GFP_ATOMIC); in speakup_set_selection()
111 for (i = sel_start; i <= sel_end; i += 2) { in speakup_set_selection()