Home
last modified time | relevance | path

Searched refs:scroll (Results 1 - 18 of 18) sorted by relevance

/kernel/linux/linux-5.10/scripts/kconfig/lxdialog/
H A Dmenubox.c40 * Reset 'scroll' to 0 if the value from lxdialog.scrltmp is bogus.
43 * fscanf would read in 'scroll', and eventually that value would get used.
96 * Print the scroll indicators.
98 static void print_arrows(WINDOW * win, int item_no, int scroll, int y, int x, in print_arrows() argument
107 if (scroll > 0) { in print_arrows()
123 if ((height < item_no) && (scroll + height < item_no)) { in print_arrows()
157 /* scroll up n lines (n may be negative) */
158 static void do_scroll(WINDOW *win, int *scroll, int n) in do_scroll() argument
164 *scroll = *scroll in do_scroll()
176 int key = 0, button = 0, scroll = 0, choice = 0; dialog_menu() local
[all...]
H A Dchecklist.c50 * Print the scroll indicators.
52 static void print_arrows(WINDOW * win, int choice, int item_no, int scroll, in print_arrows() argument
57 if (scroll > 0) { in print_arrows()
72 if ((height < item_no) && (scroll + choice < item_no - 1)) { in print_arrows()
108 int key = 0, button = 0, choice = 0, scroll = 0, max_choice; in dialog_checklist() local
176 scroll = choice - list_height + 1; in dialog_checklist()
177 choice -= scroll; in dialog_checklist()
182 item_set(scroll + i); in dialog_checklist()
186 print_arrows(dialog, choice, item_count(), scroll, in dialog_checklist()
199 item_set(i + scroll); in dialog_checklist()
[all...]
/kernel/linux/linux-6.6/scripts/kconfig/lxdialog/
H A Dmenubox.c40 * Reset 'scroll' to 0 if the value from lxdialog.scrltmp is bogus.
43 * fscanf would read in 'scroll', and eventually that value would get used.
88 * Print the scroll indicators.
90 static void print_arrows(WINDOW * win, int item_no, int scroll, int y, int x, in print_arrows() argument
99 if (scroll > 0) { in print_arrows()
115 if ((height < item_no) && (scroll + height < item_no)) { in print_arrows()
149 /* scroll up n lines (n may be negative) */
150 static void do_scroll(WINDOW *win, int *scroll, int n) in do_scroll() argument
156 *scroll = *scroll in do_scroll()
168 int key = 0, button = 0, scroll = 0, choice = 0; dialog_menu() local
[all...]
H A Dchecklist.c50 * Print the scroll indicators.
52 static void print_arrows(WINDOW * win, int choice, int item_no, int scroll, in print_arrows() argument
57 if (scroll > 0) { in print_arrows()
72 if ((height < item_no) && (scroll + choice < item_no - 1)) { in print_arrows()
108 int key = 0, button = 0, choice = 0, scroll = 0, max_choice; in dialog_checklist() local
176 scroll = choice - list_height + 1; in dialog_checklist()
177 choice -= scroll; in dialog_checklist()
182 item_set(scroll + i); in dialog_checklist()
186 print_arrows(dialog, choice, item_count(), scroll, in dialog_checklist()
199 item_set(i + scroll); in dialog_checklist()
[all...]
/kernel/linux/linux-5.10/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
H A DSchedGui.py42 self.scroll = wx.ScrolledWindow(self.panel)
43 self.scroll.SetScrollbars(self.scroll_scale, self.scroll_scale, self.width_virtual / self.scroll_scale, self.height_virtual / self.scroll_scale)
44 self.scroll.EnableScrolling(True, True)
45 self.scroll.SetFocus()
48 self.scroll_panel = wx.Panel(self.scroll, size=(self.screen_width - 15, self.screen_height / 2))
52 self.scroll.Bind(wx.EVT_PAINT, self.on_paint)
53 self.scroll.Bind(wx.EVT_KEY_DOWN, self.on_key_press)
54 self.scroll.Bind(wx.EVT_LEFT_DOWN, self.on_mouse_down)
56 self.scroll.Fit()
72 (x, y) = self.scroll
[all...]
/kernel/linux/linux-6.6/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
H A DSchedGui.py42 self.scroll = wx.ScrolledWindow(self.panel)
43 self.scroll.SetScrollbars(self.scroll_scale, self.scroll_scale, self.width_virtual / self.scroll_scale, self.height_virtual / self.scroll_scale)
44 self.scroll.EnableScrolling(True, True)
45 self.scroll.SetFocus()
48 self.scroll_panel = wx.Panel(self.scroll, size=(self.screen_width - 15, self.screen_height / 2))
52 self.scroll.Bind(wx.EVT_PAINT, self.on_paint)
53 self.scroll.Bind(wx.EVT_KEY_DOWN, self.on_key_press)
54 self.scroll.Bind(wx.EVT_LEFT_DOWN, self.on_mouse_down)
56 self.scroll.Fit()
72 (x, y) = self.scroll
[all...]
/kernel/linux/linux-5.10/drivers/input/keyboard/
H A Datkbd.c56 module_param_named(scroll, atkbd_scroll, bool, 0);
57 MODULE_PARM_DESC(scroll, "Enable scroll-wheel on MS Office and similar keyboards");
221 bool scroll; member
279 ATKBD_DEFINE_ATTR(scroll); variable
415 int scroll = 0, hscroll = 0, click = -1; in atkbd_interrupt() local
517 scroll = 1; in atkbd_interrupt()
520 scroll = 2; in atkbd_interrupt()
523 scroll = 4; in atkbd_interrupt()
526 scroll in atkbd_interrupt()
[all...]
/kernel/linux/linux-6.6/drivers/input/keyboard/
H A Datkbd.c57 module_param_named(scroll, atkbd_scroll, bool, 0);
58 MODULE_PARM_DESC(scroll, "Enable scroll-wheel on MS Office and similar keyboards");
220 bool scroll; member
277 ATKBD_DEFINE_ATTR(scroll); variable
448 int scroll = 0, hscroll = 0, click = -1; in atkbd_receive_byte() local
528 scroll = 1; in atkbd_receive_byte()
531 scroll = 2; in atkbd_receive_byte()
534 scroll = 4; in atkbd_receive_byte()
537 scroll in atkbd_receive_byte()
[all...]
/kernel/linux/linux-5.10/drivers/input/mouse/
H A Dsynaptics.h162 s8 scroll; member
185 int scroll; member
H A Dsynaptics.c848 hw->scroll = (s8)buf[1]; in synaptics_parse_hw_state()
1079 if (hw.scroll) { in synaptics_process_packet()
1080 priv->scroll += hw.scroll; in synaptics_process_packet()
1082 while (priv->scroll >= 4) { in synaptics_process_packet()
1087 priv->scroll -= 4; in synaptics_process_packet()
1089 while (priv->scroll <= -4) { in synaptics_process_packet()
1094 priv->scroll += 4; in synaptics_process_packet()
/kernel/linux/linux-6.6/drivers/input/mouse/
H A Dsynaptics.h162 s8 scroll; member
185 int scroll; member
H A Dsynaptics.c850 hw->scroll = (s8)buf[1]; in synaptics_parse_hw_state()
1081 if (hw.scroll) { in synaptics_process_packet()
1082 priv->scroll += hw.scroll; in synaptics_process_packet()
1084 while (priv->scroll >= 4) { in synaptics_process_packet()
1089 priv->scroll -= 4; in synaptics_process_packet()
1091 while (priv->scroll <= -4) { in synaptics_process_packet()
1096 priv->scroll += 4; in synaptics_process_packet()
/kernel/linux/linux-5.10/arch/x86/boot/compressed/
H A Dmisc.c86 static void scroll(void) in scroll() function
133 scroll(); in __putstr()
141 scroll(); in __putstr()
/kernel/linux/linux-6.6/arch/x86/boot/compressed/
H A Dmisc.c95 static void scroll(void) in scroll() function
142 scroll(); in __putstr()
150 scroll(); in __putstr()
/kernel/linux/linux-5.10/drivers/video/fbdev/
H A Duvesafb.c49 static int ypan = 1; /* 0: scroll, 1: ypan, 2: ywrap */
1964 module_param_named(scroll, ypan, scroll, 0);
1965 MODULE_PARM_DESC(scroll,
/kernel/linux/linux-6.6/drivers/video/fbdev/
H A Duvesafb.c49 static int ypan = 1; /* 0: scroll, 1: ypan, 2: ywrap */
1959 module_param_named(scroll, ypan, scroll, 0);
1960 MODULE_PARM_DESC(scroll,
/kernel/linux/linux-5.10/tools/power/pm-graph/
H A Dsleepgraph.py4737 body {overflow-y:scroll;}\n\
4767 .zoombox {position:relative;width:100%;overflow-x:scroll;-webkit-user-select:none;-moz-user-select:none;user-select:none;}\n\
/kernel/linux/linux-6.6/tools/power/pm-graph/
H A Dsleepgraph.py4991 body {overflow-y:scroll;}\n\
5021 .zoombox {position:relative;width:100%;overflow-x:scroll;-webkit-user-select:none;-moz-user-select:none;user-select:none;}\n\

Completed in 43 milliseconds