Lines Matching defs:ep1
139 #define e1 (*ep1)
145 * Walks the two expression trees given in 'ep1' and 'ep2'. Any node that does
150 static void __expr_eliminate_eq(enum expr_type type, struct expr **ep1, struct expr **ep2)
193 * Rewrites the expressions 'ep1' and 'ep2' to remove operands common to both.
196 * ep1: A && B -> ep1: y
199 * ep1: A || B -> ep1: n
202 * ep1: A && (B && FOO) -> ep1: FOO
205 * ep1: A && (B || C) -> ep1: y
221 void expr_eliminate_eq(struct expr **ep1, struct expr **ep2)
228 __expr_eliminate_eq(e1->type, ep1, ep2);
235 __expr_eliminate_eq(e2->type, ep1, ep2);
592 * Walks the two expression trees given in 'ep1' and 'ep2'. Any node that does
596 static void expr_eliminate_dups1(enum expr_type type, struct expr **ep1, struct expr **ep2)
598 #define e1 (*ep1)