• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/config/

Lines Matching refs:expr

43 	struct expr *expr;
47 struct expr {
57 #define E_EXPR(ev) ((ev).expr)
65 struct expr *expr;
95 struct expr *dep, *dep2;
145 struct expr *dep;
146 struct expr *dep2;
168 struct expr *dep;
185 struct expr *expr_alloc_symbol(struct symbol *sym);
187 struct expr *expr_alloc_one(int token, struct expr *ce);
188 struct expr *expr_alloc_two(int token, struct expr *e1, struct expr *e2);
189 struct expr *expr_alloc_comp(int token, struct symbol *s1, struct symbol *s2);
191 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce);
192 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2);
193 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2);
195 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2);
196 struct expr *expr_copy(struct expr *org);
197 void expr_free(struct expr *e);
198 int expr_eq(struct expr *e1, struct expr *e2);
199 void expr_eliminate_eq(struct expr **ep1, struct expr **ep2);
200 tristate expr_calc_value(struct expr *e);
201 struct expr *expr_eliminate_yn(struct expr *e);
202 struct expr *expr_trans_bool(struct expr *e);
203 struct expr *expr_eliminate_dups(struct expr *e);
204 struct expr *expr_transform(struct expr *e);
205 int expr_contains_symbol(struct expr *dep, struct symbol *sym);
206 bool expr_depends_symbol(struct expr *dep, struct symbol *sym);
207 struct expr *expr_extract_eq_and(struct expr **ep1, struct expr **ep2);
208 struct expr *expr_extract_eq_or(struct expr **ep1, struct expr **ep2);
209 void expr_extract_eq(enum expr_type type, struct expr **ep, struct expr **ep1, struct expr **ep2);
210 struct expr *expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym);
212 void expr_fprint(struct expr *e, FILE *out);
213 void print_expr(int mask, struct expr *e, int prevtoken);
216 static inline int expr_is_yes(struct expr *e)
221 static inline int expr_is_no(struct expr *e)
226 static inline int expr_is_yes(struct expr *e)
231 static inline int expr_is_no(struct expr *e)