Home
last modified time | relevance | path

Searched refs:expr (Results 1 – 19 of 19) sorted by relevance

/buildroot/support/kconfig/
A Dexpr.h38 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 Dexpr.c14 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 Dmenu.c81 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 Dlkc.h104 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 Dsymbol.c36 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 Dzconf.y41 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 Dzconf.tab.c_shipped182 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 Dlkc_proto.h53 void expr_print(struct expr *e, void (*fn)(void *, struct symbol *, const char *), void *data, int …
A Dconfdata.c273 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 Dqconf.cc119 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 Dutil.c40 struct expr *e; in file_write_dep()
/buildroot/support/testing/tests/package/
A Dsample_python_sympy.py7 expr = x + 2*y variable
9 expanded_expr = expand(x*expr)
/buildroot/package/sdl/
A D0001-use-correct-directfb-config.patch19 NEED_VERSION=`expr $1 \* 10000 + $2 \* 100 + $3`
22 HAVE_VERSION=`expr $1 \* 10000 + $2 \* 100 + $3`
/buildroot/package/linux-fusion/
A D0001-fix-for-linux-4-and-above.patch25 …check-version = $(shell expr \( $(K_VERSION) \* 65536 + $(K_PATCHLEVEL) \* 256 + $(K_SUBLEVEL) \) …
/buildroot/package/perl/
A Dperl.mk63 ifeq ($(shell expr $(PERL_VERSION_MAJOR) % 2), 1)
/buildroot/support/kconfig/patches/
A D14-support-out-of-tree-config.patch178 struct expr *e;
/buildroot/support/gnuconfig/
A Dconfig.guess222 expr='s/^earmv[0-9]/-eabi/;s/eb$//'
223 abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"`
/buildroot/package/systemd/
A Dsystemd.mk751 expr '$(LOCALE_NOPURGE)' : ".*\b$${langext}\b" >/dev/null && continue; \
/buildroot/package/qt5/qt5webengine-chromium/
A D0001-Add-python3-build-support.patch669 + 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)

Completed in 55 milliseconds