Home
last modified time | relevance | path

Searched refs:y (Results 1 – 25 of 64) sorted by relevance

123

/scripts/coccinelle/misc/
Dminmax.cocci22 expression x, y;
30 * ((x) cmp@p (y) ? (x) : (y))
36 expression x, y;
45 * if ((x) cmp@p (y)) {
48 * max_val = (y);
55 expression x, y;
63 * ((x) cmp@p (y) ? (x) : (y))
69 expression x, y;
78 * if ((x) cmp@p (y)) {
81 * min_val = (y);
[all …]
/scripts/kconfig/tests/choice/
Dallyes_expected_config1 CONFIG_MODULES=y
3 CONFIG_BOOL_CHOICE1=y
5 CONFIG_OPT_BOOL_CHOICE1=y
7 CONFIG_TRI_CHOICE1=y
9 CONFIG_OPT_TRI_CHOICE1=y
Dallmod_expected_config1 CONFIG_MODULES=y
3 CONFIG_BOOL_CHOICE1=y
5 CONFIG_OPT_BOOL_CHOICE1=y
Doldask0_expected_stdout6 optional boolean choice [N/y/?] (NEW)
7 tristate choice [M/y/?] (NEW)
10 optional tristate choice [N/m/y/?] (NEW)
Dalldef_expected_config1 CONFIG_MODULES=y
3 CONFIG_BOOL_CHOICE1=y
Dallno_expected_config3 CONFIG_BOOL_CHOICE1=y
5 CONFIG_TRI_CHOICE1=y
/scripts/kconfig/lxdialog/
Dyesno.c17 int y = height - 2; in print_buttons() local
19 print_button(dialog, " Yes ", y, x, selected == 0); in print_buttons()
20 print_button(dialog, " No ", y, x + 13, selected == 1); in print_buttons()
22 wmove(dialog, y, x + 1 + 13 * selected); in print_buttons()
31 int i, x, y, key = 0, button = 0; in dialog_yesno() local
42 y = (getmaxy(stdscr) - height) / 2; in dialog_yesno()
44 draw_shadow(stdscr, y, x, height, width); in dialog_yesno()
46 dialog = newwin(height, width, y, x); in dialog_yesno()
Ddialog.h27 #define MIN(x,y) (x < y ? x : y) argument
28 #define MAX(x,y) (x > y ? x : y) argument
185 void end_dialog(int x, int y);
188 void print_autowrap(WINDOW * win, const char *prompt, int width, int y, int x);
189 void print_button(WINDOW * win, const char *label, int y, int x, int selected);
191 void draw_box(WINDOW * win, int y, int x, int height, int width, chtype box,
193 void draw_shadow(WINDOW * win, int y, int x, int height, int width);
Dmenubox.c90 static void print_arrows(WINDOW * win, int item_no, int scroll, int y, int x, in print_arrows() argument
97 wmove(win, y, x); in print_arrows()
111 y = y + height + 1; in print_arrows()
112 wmove(win, y, x); in print_arrows()
137 int y = height - 2; in print_buttons() local
139 print_button(win, "Select", y, x, selected == 0); in print_buttons()
140 print_button(win, " Exit ", y, x + 12, selected == 1); in print_buttons()
141 print_button(win, " Help ", y, x + 24, selected == 2); in print_buttons()
142 print_button(win, " Save ", y, x + 36, selected == 3); in print_buttons()
143 print_button(win, " Load ", y, x + 48, selected == 4); in print_buttons()
[all …]
Dchecklist.c53 int y, int x, int height) in print_arrows() argument
55 wmove(win, y, x); in print_arrows()
69 y = y + height + 1; in print_arrows()
70 wmove(win, y, x); in print_arrows()
91 int y = height - 2; in print_buttons() local
93 print_button(dialog, "Select", y, x, selected == 0); in print_buttons()
94 print_button(dialog, " Help ", y, x + 14, selected == 1); in print_buttons()
96 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons()
107 int i, x, y, box_x, box_y; in dialog_checklist() local
131 y = (getmaxy(stdscr) - height) / 2; in dialog_checklist()
[all …]
Dinputbox.c19 int y = height - 2; in print_buttons() local
21 print_button(dialog, " Ok ", y, x, selected == 0); in print_buttons()
22 print_button(dialog, " Help ", y, x + 14, selected == 1); in print_buttons()
24 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons()
34 int i, x, y, box_y, box_x, box_width; in dialog_inputbox() local
53 y = (getmaxy(stdscr) - height) / 2; in dialog_inputbox()
55 draw_shadow(stdscr, y, x, height, width); in dialog_inputbox()
57 dialog = newwin(height, width, y, x); in dialog_inputbox()
76 getyx(dialog, y, x); in dialog_inputbox()
77 box_y = y + 2; in dialog_inputbox()
[all …]
/scripts/kconfig/tests/inter_choice/
Dexpected_config1 CONFIG_MODULES=y
2 CONFIG_CHOICE_VAL0=y
4 CONFIG_DUMMY=y
/scripts/coccinelle/free/
Dpci_free_consistent.cocci15 expression x,y,z,e;
20 id = pci_alloc_consistent@p1(x,y,&z)
23 ... when != pci_free_consistent(x,y,id,z)
24 when != if (id) { ... pci_free_consistent(x,y,id,z) ... }
25 when != if (y) { ... pci_free_consistent(x,y,id,z) ... }
/scripts/
Dbootgraph.pl177 my ($s, $s2, $s3, $e, $w, $y, $y2, $style);
190 $y = $rows{$pid} * 150;
191 $y2 = $y + 4;
200 $y = $y + 15;
201 print "<rect x=\"$s\" width=\"$w\" y=\"$y\" height=\"115\" style=\"$style_wait\"/>\n";
203 print "<rect x=\"$s\" width=\"$w\" y=\"$y\" height=\"145\" style=\"$style\"/>\n";
Dstackdelta55 my $y = $new->{$_}{size};
56 my $delta = $y - $x;
58 printf "%s\t%d\t%d\t%+d\n", $_, $x, $y, $delta;
DKconfig.include19 # Return y if <command> exits with 0, n otherwise
20 success = $(if-success,$(1),y,n)
23 # Return n if <command> exits with 0, y otherwise
24 failure = $(if-success,$(1),n,y)
27 # Return y if the compiler supports <flag>, n otherwise
31 # Return y if the linker supports <flag>, n otherwise
35 # Return y if the assembler supports <instr>, n otherwise
/scripts/kconfig/tests/auto_submenu/
Dexpected_stdout3 A1_0 (A0_0) [N/y/?] (NEW)
9 B (B) [N/y/?] (NEW)
10 C (C) [N/y/?] (NEW)
/scripts/kconfig/tests/choice_value_with_m_dep/
Dexpected_config1 CONFIG_MODULES=y
3 CONFIG_CHOICE0=y
Dexpected_stdout1 Tristate Choice [M/y/?] y
/scripts/kconfig/tests/new_choice_with_dep/
Dconfig1 CONFIG_CHOICE_B=y
3 CONFIG_CHOICE_E=y
Dexpected_stdout1 A (A) [N/y/?] (NEW) y
/scripts/coccinelle/tests/
Dodd_ptr_err.cocci44 expression x,y;
55 - y
66 expression x, y;
77 y
85 expression x, y;
93 y
/scripts/kconfig/tests/preprocess/builtin_func/
DKconfig6 # 'warning-if', if the first argument is y, sends the second argument to stderr,
8 $(warning-if,y,hello world 1)
11 # The following is just no-op since the first argument is not y.
15 warning = $(warning-if,y,$(1))
/scripts/tracing/
Dftrace-bisect.sh110 let y=$x+1
134 sed -ne "$y,\$p" $full > $nontest
/scripts/gcc-plugins/
Dgcc-generate-rtl-pass.h24 #define _GCC_PLUGIN_CONCAT2(x, y) x ## y argument
25 #define _GCC_PLUGIN_CONCAT3(x, y, z) x ## y ## z argument

123