Lines Matching refs:expr
32 struct expr * const expr; member
47 struct expr { struct
60 struct expr *expr; member
192 struct expr *expr; /* the optional conditional part of the property */ member
258 struct expr *visibility;
264 struct expr *dep;
297 struct expr *expr_alloc_symbol(struct symbol *sym);
298 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce);
299 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2);
300 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2);
301 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2);
302 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2);
303 void expr_eliminate_eq(struct expr **ep1, struct expr **ep2);
304 bool expr_eq(struct expr *e1, struct expr *e2);
305 tristate expr_calc_value(struct expr *e);
306 struct expr *expr_eliminate_dups(struct expr *e);
307 struct expr *expr_transform(struct expr *e);
308 bool expr_contains_symbol(struct expr *dep, struct symbol *sym);
309 bool expr_depends_symbol(struct expr *dep, struct symbol *sym);
310 struct expr *expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym);
312 void expr_fprint(struct expr *e, FILE *out);
314 void expr_gstr_print(const struct expr *e, struct gstr *gs);
315 void expr_gstr_print_revdep(struct expr *e, struct gstr *gs,
318 static inline bool expr_is_yes(const struct expr *e) in expr_is_yes()