Lines Matching refs:db_expr_t
40 static bool db_term(db_expr_t *);
41 static bool db_unary(db_expr_t *);
42 static bool db_mult_expr(db_expr_t *);
43 static bool db_add_expr(db_expr_t *);
44 static bool db_shift_expr(db_expr_t *);
47 db_term(db_expr_t *valuep)
54 db_expr_t v = 0;
71 *valuep = (db_expr_t)v;
76 *valuep = (db_expr_t)db_tok_number;
80 *valuep = (db_expr_t)db_dot;
84 *valuep = (db_expr_t)db_prev;
88 *valuep = (db_expr_t) db_next;
92 *valuep = (db_expr_t)db_last_addr;
117 db_unary(db_expr_t *valuep)
136 *valuep = db_get_value((db_addr_t)*valuep, sizeof(db_expr_t),
145 db_mult_expr(db_expr_t *valuep)
147 db_expr_t lhs, rhs;
181 db_add_expr(db_expr_t *valuep)
183 db_expr_t lhs, rhs;
207 db_shift_expr(db_expr_t *valuep)
209 db_expr_t lhs, rhs;
239 db_expression(db_expr_t *valuep)