Home
last modified time | relevance | path

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

123

/l4re-core-master/uclibc/lib/contrib/uclibc/extra/config/
A Dexpr.h36 struct expr *expr; member
53 struct expr *expr; member
199 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2);
201 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2);
202 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2);
205 int expr_eq(struct expr *e1, struct expr *e2);
209 struct expr *expr_trans_bool(struct expr *e);
211 struct expr *expr_transform(struct expr *e);
214 struct expr *expr_extract_eq_and(struct expr **ep1, struct expr **ep2);
215 struct expr *expr_extract_eq_or(struct expr **ep1, struct expr **ep2);
[all …]
A Dexpr.c30 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2) in expr_alloc_two()
48 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2) in expr_alloc_and()
55 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2) in expr_alloc_or()
62 struct expr *expr_copy(const struct expr *org) in expr_copy()
76 e->left.expr = expr_copy(org->left.expr); in expr_copy()
86 e->left.expr = expr_copy(org->left.expr); in expr_copy()
346 static struct expr *expr_join_or(struct expr *e1, struct expr *e2) in expr_join_or()
410 static struct expr *expr_join_and(struct expr *e1, struct expr *e2) in expr_join_and()
702 tmp = e->left.expr->left.expr; in expr_transform()
826 struct expr *expr_extract_eq_and(struct expr **ep1, struct expr **ep2) in expr_extract_eq_and()
[all …]
A Dmenu.c82 static struct expr *menu_check_dep(struct expr *e) in menu_check_dep()
89 e->left.expr = menu_check_dep(e->left.expr); in menu_check_dep()
93 e->left.expr = menu_check_dep(e->left.expr); in menu_check_dep()
94 e->right.expr = menu_check_dep(e->right.expr); in menu_check_dep()
127 struct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct expr *d… in menu_add_prop() argument
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
327 es->rev_dep.expr = expr_alloc_or(es->rev_dep.expr, in menu_finalize()
[all …]
A Dsymbol.c36 struct expr *sym_env_list;
238 struct expr *e; in sym_choice_default()
264 struct expr *e; in sym_calc_choice()
296 struct expr *e; in sym_calc_value()
368 struct expr *e; in sym_calc_value()
510 struct expr *e; in sym_set_tristate_value()
515 for (e = prop->expr; e; e = e->left.expr) { in sym_set_tristate_value()
1064 struct expr *expr; member
1213 stack.expr = prop->expr; in sym_check_sym_deps()
1230 struct expr *e; in sym_check_choice_deps()
[all …]
A Dlkc.h113 void menu_add_dep(struct expr *dep);
114 void menu_add_visibility(struct expr *dep);
115 struct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct expr *d…
116 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep);
117 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep);
118 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep);
148 extern struct expr *sym_env_list;
A Dzconf.y41 struct expr *expr; member
83 %type <expr> expr
84 %type <expr> if_expr
316 if_entry: T_IF expr nl
423 depends: T_DEPENDS T_ON expr T_EOL
466 | T_IF expr { $$ = $2; }
474 | expr T_OR expr { $$ = expr_alloc_two(E_OR, $1, $3); }
475 | expr T_AND expr { $$ = expr_alloc_two(E_AND, $1, $3); }
650 expr_fprint(prop->expr, out); in print_symbol()
662 expr_fprint(prop->expr, out); in print_symbol()
[all …]
A Dkconfig-language.txt62 - input prompt: "prompt" <prompt> ["if" <expr>]
67 - default value: "default" <expr> ["if" <expr>]
81 "def_bool"/"def_tristate" <expr> ["if" <expr>]
85 - dependencies: "depends on" <expr>
116 - limiting menu display: "visible if" <expr>
172 <expr> '&&' <expr> (6)
173 <expr> '||' <expr> (7)
185 (5) Returns the result of (2-/expr/).
186 (6) Returns the result of min(/expr/, /expr/).
187 (7) Returns the result of max(/expr/, /expr/).
[all …]
A Dzconf.tab.c_shipped183 struct expr *expr;
1731 menu_add_expr(P_DEFAULT, (yyvsp[(2) - (4)].expr), (yyvsp[(3) - (4)].expr));
1978 { (yyval.expr) = NULL; ;}
1983 { (yyval.expr) = (yyvsp[(2) - (2)].expr); ;}
2003 { (yyval.expr) = (yyvsp[(2) - (3)].expr); ;}
2008 { (yyval.expr) = expr_alloc_one(E_NOT, (yyvsp[(2) - (2)].expr)); ;}
2013 { (yyval.expr) = expr_alloc_two(E_OR, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); ;}
2018 { (yyval.expr) = expr_alloc_two(E_AND, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); ;}
2413 expr_fprint(prop->expr, out);
2425 expr_fprint(prop->expr, out);
[all …]
A Dqconf.cc122 tristate expr; in updateMenu() local
174 expr = sym_get_tristate_value(sym); in updateMenu()
175 switch (expr) { in updateMenu()
198 if (expr != no) in updateMenu()
200 if (expr != mod) in updateMenu()
202 if (expr != yes) in updateMenu()
1054 if (_menu->prompt->visible.expr) { in menuInfo()
1076 if (sym->rev_dep.expr) { in debug_info()
1095 expr_print(prop->expr, expr_print_help, &debug, E_NONE); in debug_info()
1101 expr_print(prop->expr, expr_print_help, &debug, E_NONE); in debug_info()
[all …]
A Dconfdata.c266 if (expr_calc_value(prop->visible.expr) == no || in conf_read_simple()
267 prop->expr->type != E_SYMBOL) in conf_read_simple()
269 name = conf_expand_value(prop->expr->left.sym->name); in conf_read_simple()
1064 struct expr *e; in randomize_choice_values()
1079 expr_list_for_each_sym(prop->expr, e, sym) in randomize_choice_values()
1089 expr_list_for_each_sym(prop->expr, e, sym) { in randomize_choice_values()
1112 struct expr *e; in set_all_choice_values()
1119 expr_list_for_each_sym(prop->expr, e, sym) { in set_all_choice_values()
A Dlkc_proto.h57 P(expr_print,void,(struct expr *e, void (*fn)(void *, struct symbol *, const char *), void *data, i…
A Dutil.c38 struct expr *e; in file_write_dep()
/l4re-core-master/l4sys/include/
A Dassert.h43 #define l4_assert(expr) \ argument
44 l4_assert_fn(expr, __FILE__ ":" L4_stringify(__LINE__) ": Assertion \"" \
45 L4_stringify(expr) "\" failed.\n")
47 #define l4_check(expr) l4_assert(expr) argument
53 void l4_assert_fn(bool expr, const char *text) L4_NOTHROW;
74 void l4_assert_fn(bool expr, const char *text) L4_NOTHROW in l4_assert_fn() argument
76 if (L4_LIKELY(expr)) in l4_assert_fn()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/wordexp/
A Dwordexp.c514 for (++digit; **expr && **expr != ')'; ++(*expr)); in eval_expr_val()
560 for (; *expr && **expr && isspace(**expr); ++(*expr)); in eval_expr_multdiv()
591 for (; expr && *expr && isspace(*expr); ++expr); in eval_expr()
594 ++expr; in eval_expr()
600 ++expr; in eval_expr()
621 char *expr; in parse_arith() local
679 if (*expr && eval_expr(expr, &numresult) != 0) { in parse_arith()
700 expr = in parse_arith()
714 if (*expr && eval_expr(expr, &numresult) != 0) { in parse_arith()
739 expr = in parse_arith()
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/include/
A Dassert.h46 # define assert(expr) (__ASSERT_VOID_CAST (0)) argument
59 # define assert(expr) \ argument
60 (__ASSERT_VOID_CAST ((expr) ? 0 : \
61 (__assert (__STRING(expr), __FILE__, __LINE__, __ASSERT_FUNCTION), 0)))
A Dtgmath.h66 # define __tgmath_real_type(expr) \ argument
67 __tgmath_real_type_sub (__typeof__ ((__typeof__ (expr)) 0), \
68 __floating_type (__typeof__ (expr)))
/l4re-core-master/uclibc/lib/contrib/uclibc/ldso/include/
A Dldso.h121 # define _dl_assert(expr) \ argument
123 if (!(expr)) { \
124 __dl_debug_dprint("assert(%s)\n", #expr); \
129 # define _dl_assert(expr) ((void)0) argument
133 # define _dl_assert(expr) assert(expr) argument
/l4re-core-master/uclibc/lib/contrib/uclibc/test/locale/
A Dtst-mbswcs4.c24 #define show(expr, nexp, wcexp, end) \ argument
25 n = expr; \
26 printf (#expr " -> %Zd", n); \
A Dtst-mbswcs1.c25 #define show(expr, nexp, wcexp) \ argument
26 n = expr; \
27 printf (#expr " -> %Zd", n); \
A Dtst-mbswcs2.c25 #define show(expr, nexp, wcexp, end) \ argument
26 n = expr; \
27 printf (#expr " -> %Zd", n); \
A Dtst-mbswcs5.c25 #define show(expr, nexp, bufexp) \ argument
27 size_t res = expr; \
28 printf (#expr " -> %Zd", res); \
A Dtst-mbswcs3.c25 #define show(expr, nexp, srcexp, bufexp) \ argument
27 size_t res = expr; \
28 printf (#expr " -> %Zd", res); \
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/regex/
A Dregex_internal.h68 # define BE(expr, val) (expr) argument
70 # define BE(expr, val) (expr) argument
/l4re-core-master/uclibc/lib/contrib/uclibc/extra/scripts/
A Drandconfig.sh37 i=`expr $i + 1`
/l4re-core-master/lua/lib/contrib/src/
A Dlparser.c65 static void expr (LexState *ls, expdesc *v);
813 expr(ls, v); in yindex()
850 expr(ls, &val); in recfield()
886 expr(ls, &cc->v); in listfield()
1003 expr(ls, v); in explist()
1006 expr(ls, v); in explist()
1074 expr(ls, v); in primaryexp()
1278 static void expr (LexState *ls, expdesc *v) { in expr() function
1397 expr(ls, &v); /* read condition */ in cond()
1507 expr(ls, &e); in exp1()
[all …]

Completed in 38 milliseconds

123