expr_alloc_two     57 scripts/kconfig/expr.c 	return e2 ? expr_alloc_two(E_AND, e1, e2) : e1;
expr_alloc_two     64 scripts/kconfig/expr.c 	return e2 ? expr_alloc_two(E_OR, e1, e2) : e1;
expr_alloc_two    938 scripts/kconfig/expr.c 			e = expr_alloc_two(E_AND, e1, e2);
expr_alloc_two    940 scripts/kconfig/expr.c 			e = expr_alloc_two(E_OR, e1, e2);
expr_alloc_two    948 scripts/kconfig/expr.c 			e = expr_alloc_two(E_OR, e1, e2);
expr_alloc_two    950 scripts/kconfig/expr.c 			e = expr_alloc_two(E_AND, e1, e2);
expr_alloc_two    297 scripts/kconfig/expr.h struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2);
expr_alloc_two    459 scripts/kconfig/parser.y 	| expr T_OR expr			{ $$ = expr_alloc_two(E_OR, $1, $3); }
expr_alloc_two    460 scripts/kconfig/parser.y 	| expr T_AND expr			{ $$ = expr_alloc_two(E_AND, $1, $3); }