| /buildroot/support/kconfig/ |
| A D | expr.h | 38 struct expr *expr; member 42 struct expr { struct 55 struct expr *expr; member 294 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2); 296 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2); 297 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2); 298 struct expr *expr_copy(const struct expr *org); 300 void expr_eliminate_eq(struct expr **ep1, struct expr **ep2); 302 struct expr *expr_trans_bool(struct expr *e); 303 struct expr *expr_eliminate_dups(struct expr *e); [all …]
|
| A D | expr.c | 14 static int expr_eq(struct expr *e1, struct expr *e2); 33 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2) in expr_alloc_two() 51 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2) in expr_alloc_and() 58 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2) in expr_alloc_or() 65 struct expr *expr_copy(const struct expr *org) in expr_copy() 79 e->left.expr = expr_copy(org->left.expr); in expr_copy() 93 e->left.expr = expr_copy(org->left.expr); in expr_copy() 94 e->right.expr = expr_copy(org->right.expr); in expr_copy() 423 static struct expr *expr_join_or(struct expr *e1, struct expr *e2) in expr_join_or() 487 static struct expr *expr_join_and(struct expr *e1, struct expr *e2) in expr_join_and() [all …]
|
| A D | menu.c | 81 static struct expr *rewrite_m(struct expr *e) in rewrite_m() 88 e->left.expr = rewrite_m(e->left.expr); in rewrite_m() 92 e->left.expr = rewrite_m(e->left.expr); in rewrite_m() 93 e->right.expr = rewrite_m(e->right.expr); in rewrite_m() 132 prop->expr = expr; in menu_add_prop() 182 void menu_add_visibility(struct expr *expr) in menu_add_visibility() argument 185 expr); in menu_add_visibility() 188 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep) in menu_add_expr() argument 406 es->rev_dep.expr = expr_alloc_or(es->rev_dep.expr, in menu_finalize() 410 es->implied.expr = expr_alloc_or(es->implied.expr, in menu_finalize() [all …]
|
| A D | lkc.h | 104 void menu_add_dep(struct expr *dep); 105 void menu_add_visibility(struct expr *dep); 106 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep); 107 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep); 108 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep); 137 extern struct expr *sym_env_list;
|
| A D | symbol.c | 36 struct expr *sym_env_list; 282 struct expr *e; in sym_choice_default() 308 struct expr *e; in sym_calc_choice() 361 struct expr *e; in sym_calc_value() 550 struct expr *e; in sym_set_tristate_value() 555 for (e = prop->expr; e; e = e->left.expr) { in sym_set_tristate_value() 1103 struct expr *expr; member 1168 if (stack->expr) { in sym_check_print_recursive() 1262 stack.expr = prop->expr; in sym_check_sym_deps() 1279 struct expr *e; in sym_check_choice_deps() [all …]
|
| A D | zconf.y | 41 struct expr *expr; member 90 %type <expr> expr 91 %type <expr> if_expr 348 if_entry: T_IF expr nl 501 | T_IF expr { $$ = $2; } 513 | expr T_OR expr { $$ = expr_alloc_two(E_OR, $1, $3); } 514 | expr T_AND expr { $$ = expr_alloc_two(E_AND, $1, $3); } 687 expr_fprint(prop->expr, out); in print_symbol() 699 expr_fprint(prop->expr, out); in print_symbol() 704 expr_fprint(prop->expr, out); in print_symbol() [all …]
|
| A D | zconf.tab.c_shipped | 182 struct expr *expr; 1624 menu_add_expr(P_DEFAULT, (yyvsp[-2].expr), (yyvsp[-1].expr)); 1770 menu_add_dep((yyvsp[-1].expr)); 1867 menu_add_dep((yyvsp[-1].expr)); 1909 { (yyval.expr) = NULL; } 1915 { (yyval.expr) = (yyvsp[0].expr); } 1963 { (yyval.expr) = (yyvsp[-1].expr); } 1969 { (yyval.expr) = expr_alloc_one(E_NOT, (yyvsp[0].expr)); } 1975 { (yyval.expr) = expr_alloc_two(E_OR, (yyvsp[-2].expr), (yyvsp[0].expr)); } 1981 { (yyval.expr) = expr_alloc_two(E_AND, (yyvsp[-2].expr), (yyvsp[0].expr)); } [all …]
|
| A D | lkc_proto.h | 53 void expr_print(struct expr *e, void (*fn)(void *, struct symbol *, const char *), void *data, int …
|
| A D | confdata.c | 273 if (expr_calc_value(prop->visible.expr) == no || in conf_read_simple() 274 prop->expr->type != E_SYMBOL) in conf_read_simple() 276 name = conf_expand_value(prop->expr->left.sym->name); in conf_read_simple() 1092 struct expr *e; in randomize_choice_values() 1107 expr_list_for_each_sym(prop->expr, e, sym) in randomize_choice_values() 1117 expr_list_for_each_sym(prop->expr, e, sym) { in randomize_choice_values() 1140 struct expr *e; in set_all_choice_values() 1147 expr_list_for_each_sym(prop->expr, e, sym) { in set_all_choice_values()
|
| A D | qconf.cc | 119 tristate expr; in updateMenu() local 171 expr = sym_get_tristate_value(sym); in updateMenu() 172 switch (expr) { in updateMenu() 195 if (expr != no) in updateMenu() 197 if (expr != mod) in updateMenu() 199 if (expr != yes) in updateMenu() 1123 if (_menu->prompt->visible.expr) { in menuInfo() 1145 if (sym->rev_dep.expr) { in debug_info() 1164 expr_print(prop->expr, expr_print_help, &debug, E_NONE); in debug_info() 1170 expr_print(prop->expr, expr_print_help, &debug, E_NONE); in debug_info() [all …]
|
| A D | util.c | 40 struct expr *e; in file_write_dep()
|
| /buildroot/support/testing/tests/package/ |
| A D | sample_python_sympy.py | 7 expr = x + 2*y variable 9 expanded_expr = expand(x*expr)
|
| /buildroot/package/sdl/ |
| A D | 0001-use-correct-directfb-config.patch | 19 NEED_VERSION=`expr $1 \* 10000 + $2 \* 100 + $3` 22 HAVE_VERSION=`expr $1 \* 10000 + $2 \* 100 + $3`
|
| /buildroot/package/linux-fusion/ |
| A D | 0001-fix-for-linux-4-and-above.patch | 25 …check-version = $(shell expr \( $(K_VERSION) \* 65536 + $(K_PATCHLEVEL) \* 256 + $(K_SUBLEVEL) \) …
|
| /buildroot/package/perl/ |
| A D | perl.mk | 63 ifeq ($(shell expr $(PERL_VERSION_MAJOR) % 2), 1)
|
| /buildroot/support/kconfig/patches/ |
| A D | 14-support-out-of-tree-config.patch | 178 struct expr *e;
|
| /buildroot/support/gnuconfig/ |
| A D | config.guess | 222 expr='s/^earmv[0-9]/-eabi/;s/eb$//' 223 abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"`
|
| /buildroot/package/systemd/ |
| A D | systemd.mk | 751 expr '$(LOCALE_NOPURGE)' : ".*\b$${langext}\b" >/dev/null && continue; \
|
| /buildroot/package/qt5/qt5webengine-chromium/ |
| A D | 0001-Add-python3-build-support.patch | 669 + expr = make_attrgetter(environment, attribute) 670 + key = lambda item: '' if expr(item) is None else str(expr(item)) 671 + return groupby(sorted(value, key=key), expr)
|