Lines Matching refs:value_match
129 value_match(expr, bits, sign, mul, 1)
131 value_match(expr, bits, sign, mul, 0)
134 #define IS_IMM(expr, bits) value_match (expr, bits, 0, 1, 1)
135 #define IS_UIMM(expr, bits) value_match (expr, bits, 0, 1, 0)
138 (value_match (expr, 4, 0, 2, 0))
141 (value_match (expr, 10, 0, 2, 0))
144 (value_match (expr, 10, 0, 2, 1))
147 (value_match (expr, 12, 0, 2, 1))
150 (value_match (expr, 24, 0, 2, 1))
153 static int value_match (Expr_Node *, int, int, int, int);
4504 value_match (Expr_Node *exp, int sz, int sign, int mul, int issigned) in value_match() function