Lines Matching refs:e
47 #define expr_list_for_each_sym(l, e, s) \ argument
48 for (e = (l); e && (s = e->right.sym); e = e->left.expr)
192 void expr_free(struct expr *e);
195 tristate expr_calc_value(struct expr *e);
196 struct expr *expr_eliminate_yn(struct expr *e);
197 struct expr *expr_trans_bool(struct expr *e);
198 struct expr *expr_eliminate_dups(struct expr *e);
199 struct expr *expr_transform(struct expr *e);
205 struct expr *expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym);
208 void expr_fprint(struct expr *e, FILE *out);
210 void expr_gstr_print(struct expr *e, struct gstr *gs);
212 static inline int expr_is_yes(struct expr *e) in expr_is_yes() argument
214 return !e || (e->type == E_SYMBOL && e->left.sym == &symbol_yes); in expr_is_yes()
217 static inline int expr_is_no(struct expr *e) in expr_is_no() argument
219 return e && (e->type == E_SYMBOL && e->left.sym == &symbol_no); in expr_is_no()