/scripts/kconfig/ |
A D | expr.h | 32 struct expr * const expr; member 47 struct expr { struct 60 struct expr *expr; member 298 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce); 299 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2); 301 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2); 302 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2); 303 void expr_eliminate_eq(struct expr **ep1, struct expr **ep2); 304 bool expr_eq(struct expr *e1, struct expr *e2); 306 struct expr *expr_eliminate_dups(struct expr *e); [all …]
|
A D | expr.c | 21 static struct expr *expr_eliminate_yn(struct expr *e); 67 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2) in expr_alloc_two() 77 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2) in expr_alloc_and() 84 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2) in expr_alloc_or() 207 bool expr_eq(struct expr *e1, struct expr *e2) in expr_eq() 232 return expr_eq(e1->left.expr, e2->left.expr); in expr_eq() 313 static struct expr *expr_join_or(struct expr *e1, struct expr *e2) in expr_join_or() 378 static struct expr *expr_join_and(struct expr *e1, struct expr *e2) in expr_join_and() 537 struct expr *expr_eliminate_dups(struct expr *e) in expr_eliminate_dups() 593 struct expr *expr_transform(struct expr *e) in expr_transform() [all …]
|
A D | menu.c | 104 static struct expr *rewrite_m(struct expr *e) in rewrite_m() 162 prop->expr = expr; in menu_add_prop() 180 struct expr *dep) in menu_add_prompt() 200 prop->visible.expr = expr_alloc_and(prop->visible.expr, in menu_add_prompt() 211 void menu_add_visibility(struct expr *expr) in menu_add_visibility() argument 214 expr); in menu_add_visibility() 217 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep) in menu_add_expr() argument 371 es->rev_dep.expr = expr_alloc_or(es->rev_dep.expr, in _menu_finalize() 375 es->implied.expr = expr_alloc_or(es->implied.expr, in _menu_finalize() 454 sym->dir_dep.expr = expr_alloc_or(sym->dir_dep.expr, parent->dep); in _menu_finalize() [all …]
|
A D | symbol.c | 1068 struct expr **expr; member 1129 } else if (stack->expr == &sym->dir_dep.expr) { in sym_check_print_recursive() 1133 } else if (stack->expr == &sym->rev_dep.expr) { in sym_check_print_recursive() 1136 } else if (stack->expr == &sym->implied.expr) { in sym_check_print_recursive() 1204 stack.expr = &sym->dir_dep.expr; in sym_check_sym_deps() 1209 stack.expr = &sym->rev_dep.expr; in sym_check_sym_deps() 1214 stack.expr = &sym->implied.expr; in sym_check_sym_deps() 1219 stack.expr = NULL; in sym_check_sym_deps() 1230 stack.expr = &prop->expr; in sym_check_sym_deps() 1234 stack.expr = NULL; in sym_check_sym_deps() [all …]
|
A D | parser.y | 39 struct expr *expr; member 92 %type <expr> expr 93 %type <expr> if_expr 315 if_entry: T_IF expr T_EOL 445 | T_IF expr { $$ = $2; } 457 | expr T_OR expr { $$ = expr_alloc_two(E_OR, $1, $3); } 458 | expr T_AND expr { $$ = expr_alloc_two(E_AND, $1, $3); } 672 expr_fprint(prop->expr, out); in print_symbol() 681 expr_fprint(prop->expr, out); in print_symbol() 686 expr_fprint(prop->expr, out); in print_symbol() [all …]
|
A D | lkc.h | 85 void menu_add_dep(struct expr *dep); 86 void menu_add_visibility(struct expr *dep); 88 struct expr *dep); 89 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep); 90 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep);
|
A D | lkc_proto.h | 44 void expr_print(const struct expr *e,
|
A D | qconf.cc | 103 tristate expr; in updateMenu() local 158 expr = sym_get_tristate_value(sym); in updateMenu() 159 switch (expr) { in updateMenu() 1048 if (_menu->prompt->visible.expr) { in menuInfo() 1050 expr_print(_menu->prompt->visible.expr, in menuInfo() 1073 if (sym->rev_dep.expr) { in debug_info() 1075 expr_print(sym->rev_dep.expr, expr_print_help, &stream, E_NONE); in debug_info() 1093 expr_print(prop->expr, expr_print_help, in debug_info() 1102 if (prop->visible.expr) { in debug_info() 1104 expr_print(prop->visible.expr, expr_print_help, in debug_info()
|
A D | Makefile | 166 common-objs := confdata.o expr.o lexer.lex.o menu.o parser.tab.o \
|
/scripts/gendwarfksyms/ |
A D | gendwarfksyms.h | 66 #define __check(expr, test) \ argument 68 int __res = expr; \ 70 error("`%s` failed: %d", #expr, __res); \ 75 #define check(expr) __check(expr, __res) argument 77 #define checkp(expr) __check(expr, __res < 0) argument
|
/scripts/ |
A D | decode_stacktrace.sh | 178 local expr=${symbol%/*} 182 expr=${expr/$name/0x$base_addr} 185 expr=$((expr)) 186 local address=$(printf "%x\n" "$expr")
|
A D | spdxcheck.py | 192 def parse(self, expr): argument 195 self.parser.parse(expr, lexer = self.lexer) 210 expr = line.split(':')[1].strip() 213 expr = expr.rstrip('*/').strip() 216 expr = expr.rstrip('-->').strip() 219 expr = expr.rstrip('#}').strip() 222 expr = expr.rstrip('\"').strip() 225 expr = expr.rstrip('#}').strip() 226 self.parse(expr) 237 col = line.find(expr) + pe.tok.lexpos
|
A D | decodecode | 58 width=`expr index "$code" ' '` 210 marker=`expr index "$code" "\<"` 212 marker=`expr index "$code" "\("`
|
A D | build-version | 5 ver=$(expr ${prev_ver} + 1 2>/dev/null) ||
|
A D | Makefile.lib | 327 dec_size=$$(expr $$dec_size + $$fsize); \
|
A D | checkpatch.pl | 6426 my $expr = '\s*\(\s*' . $tested . '\s*\)\s*;'; 6427 …(kfree|usb_free_urb|debugfs_remove(?:_recursive)?|(?:kmem_cache|mempool|dma_pool)_destroy)$expr/) {
|
/scripts/genksyms/ |
A D | parse.y | 510 struct string_list *expr = copy_list_range(*$3, *$2); variable 511 add_symbol(name, SYM_ENUM_CONST, expr, 0);
|
A D | genksyms.c | 200 struct string_list *expr; in process_enum() local 205 expr = copy_list_range(last_enum_expr, NULL); in process_enum() 207 expr, in process_enum()
|
/scripts/lib/abi/ |
A D | abi_parser.py | 577 def search_symbols(self, expr): argument 580 regex = re.compile(expr, re.I)
|