Searched defs:e2 (Results 1 - 1 of 1) sorted by relevance

/scripts/kconfig/
H A Dexpr.c30 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2) argument
35 e->right.expr = e2;
48 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2) argument
51 return e2;
52 return e2 ? expr_alloc_two(E_AND, e1, e2) : e1;
55 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2) argument
58 return e2;
59 return e2 ? expr_alloc_two(E_OR, e1, e2)
128 #define e2 macro
187 #undef e2 macro
189 expr_eq(struct expr *e1, struct expr *e2) argument
346 expr_join_or(struct expr *e1, struct expr *e2) argument
410 expr_join_and(struct expr *e1, struct expr *e2) argument
507 #define e2 macro
553 #undef e2 macro
559 #define e2 macro
609 #undef e2 macro
851 #define e2 macro
874 #undef e2 macro
879 struct expr *e1, *e2; local
1028 expr_simplify_unmet_dep(struct expr *e1, struct expr *e2) argument
[all...]

Completed in 214 milliseconds