| /scripts/coccinelle/misc/ |
| A D | minmax.cocci | 22 expression x, y; 30 * ((x) cmp@p (y) ? (x) : (y)) 36 expression x, y; 48 * max_val = (y); 70 expression x, y; 78 * ((x) cmp@p (y) ? (x) : (y)) 110 - ((x) cmp (y) ? (x) : (y)) 111 + max(x, y) 128 - max_val = y; 144 - ((x) cmp@p (y) ? (x) : (y)) [all …]
|
| /scripts/kconfig/lxdialog/ |
| A D | yesno.c | 17 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()
|
| A D | dialog.h | 27 #define MIN(x,y) (x < y ? x : y) argument 28 #define MAX(x,y) (x > y ? x : y) argument 181 void end_dialog(int x, int y); 184 void print_autowrap(WINDOW * win, const char *prompt, int width, int y, int x); 185 void print_button(WINDOW * win, const char *label, int y, int x, int selected); 187 void draw_box(WINDOW * win, int y, int x, int height, int width, chtype box, 189 void draw_shadow(WINDOW * win, int y, int x, int height, int width);
|
| A D | menubox.c | 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() 145 wmove(win, y, x + 1 + 12 * selected); in print_buttons() 166 int i, j, x, y, box_x, box_y; in dialog_menu() local 186 y = (getmaxy(stdscr) - height) / 2; in dialog_menu() 188 draw_shadow(stdscr, y, x, height, width); in dialog_menu() 190 dialog = newwin(height, width, y, x); in dialog_menu() [all …]
|
| A D | checklist.c | 53 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() 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() 133 draw_shadow(stdscr, y, x, height, width); in dialog_checklist() [all …]
|
| A D | inputbox.c | 19 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 55 y = (getmaxy(stdscr) - height) / 2; in dialog_inputbox() 57 draw_shadow(stdscr, y, x, height, width); in dialog_inputbox() 59 dialog = newwin(height, width, y, x); in dialog_inputbox() 78 getyx(dialog, y, x); in dialog_inputbox() 79 box_y = y + 2; in dialog_inputbox() [all …]
|
| /scripts/kconfig/tests/choice_randomize2/ |
| A D | expected_config0 | 5 CONFIG_A=y 7 CONFIG_FOO=y 8 CONFIG_X=y
|
| /scripts/coccinelle/free/ |
| A D | pci_free_consistent.cocci | 15 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/ |
| A D | bootgraph.pl | 177 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";
|
| A D | stackdelta | 55 my $y = $new->{$_}{size}; 56 my $delta = $y - $x; 58 printf "%s\t%d\t%d\t%+d\n", $_, $x, $y, $delta;
|
| A D | Kconfig.include | 19 # 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 72 # Return y if the Rust compiler supports <flag>, n otherwise
|
| A D | Makefile.lib | 45 ifeq ($(CONFIG_GCOV_KERNEL),y) 55 ifeq ($(CONFIG_KASAN),y) 56 ifneq ($(CONFIG_KASAN_HW_TAGS),y) 66 ifeq ($(CONFIG_KMSAN),y) 75 ifeq ($(CONFIG_UBSAN),y) 84 ifeq ($(CONFIG_KCOV),y) 97 ifeq ($(CONFIG_KCSAN),y) 112 ifeq ($(CONFIG_AUTOFDO_CLANG),y) 139 part-of-builtin = $(if $(filter $(basename $@).o, $(real-obj-y) $(lib-y)),y) 140 part-of-module = $(if $(filter $(basename $@).o, $(real-obj-m)),y) [all …]
|
| /scripts/package/ |
| A D | mkspec | 20 if grep -q CONFIG_MODULES=y include/config/auto.conf; then 28 if grep -q CONFIG_DEBUG_INFO=y include/config/auto.conf && 29 (! grep -q CONFIG_MODULE_COMPRESS=y include/config/auto.conf) && 30 (! grep -q CONFIG_DEBUG_INFO_SPLIT=y include/config/auto.conf); then
|
| /scripts/kconfig/tests/auto_submenu/ |
| A D | expected_stdout | 3 A1_0 (A0_0) [N/y/?] (NEW) 9 B (B) [N/y/?] (NEW) 10 C (C) [N/y/?] (NEW)
|
| A D | Kconfig | 5 default y 10 default y 24 default y
|
| /scripts/kconfig/tests/new_choice_with_dep/ |
| A D | config | 1 CONFIG_CHOICE_B=y 3 CONFIG_CHOICE_E=y
|
| A D | expected_stdout | 1 A (A) [N/y/?] (NEW) y
|
| /scripts/coccinelle/tests/ |
| A D | odd_ptr_err.cocci | 44 expression x,y; 55 - y 66 expression x, y; 77 y 85 expression x, y; 93 y
|
| /scripts/kconfig/tests/preprocess/builtin_func/ |
| A D | Kconfig | 6 # '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/kconfig/tests/choice_randomize/ |
| A D | expected_config1 | 6 CONFIG_B=y 7 CONFIG_X=y
|
| A D | expected_config2 | 6 CONFIG_B=y 8 CONFIG_Y=y
|
| /scripts/tracing/ |
| A D | ftrace-bisect.sh | 110 let y=$x+1 134 sed -ne "$y,\$p" $full > $nontest
|
| /scripts/gcc-plugins/ |
| A D | gcc-generate-gimple-pass.h | 24 #define _GCC_PLUGIN_CONCAT2(x, y) x ## y argument 25 #define _GCC_PLUGIN_CONCAT3(x, y, z) x ## y ## z argument
|
| A D | gcc-generate-rtl-pass.h | 24 #define _GCC_PLUGIN_CONCAT2(x, y) x ## y argument 25 #define _GCC_PLUGIN_CONCAT3(x, y, z) x ## y ## z argument
|
| A D | gcc-generate-simple_ipa-pass.h | 24 #define _GCC_PLUGIN_CONCAT2(x, y) x ## y argument 25 #define _GCC_PLUGIN_CONCAT3(x, y, z) x ## y ## z argument
|