Lines Matching refs:unsignedp

877   result.unsignedp = !!(type & CPP_N_UNSIGNED);  in cpp_interpret_integer()
945 else if (!result.unsignedp in cpp_interpret_integer()
972 result.unsignedp = true; in cpp_interpret_integer()
1007 result.unsignedp = num.unsignedp; in append_digit()
1112 result.unsignedp = false; in parse_defined()
1128 int unsignedp = 0; in eval_token() local
1130 result.unsignedp = false; in eval_token()
1167 &temp, &unsignedp); in eval_token()
1172 if (!unsignedp && (cppchar_signed_t) cc < 0) in eval_token()
1226 result.unsignedp = !!unsignedp; in eval_token()
1564 top->value.unsignedp = false; in reduce()
1576 top->value.unsignedp = false; in reduce()
1607 top->value.unsignedp = (top[1].value.unsignedp in reduce()
1608 || top[2].value.unsignedp); in reduce()
1655 if (op->value.unsignedp == op[-1].value.unsignedp) in check_promotion()
1658 if (op->value.unsignedp) in check_promotion()
1709 if (!num.unsignedp) in cpp_num_sign_extend()
1741 num.overflow = (!num.unsignedp && num_eq (num, copy) && !num_zerop (num)); in num_negate()
1750 bool unsignedp; in num_greater_eq() local
1752 unsignedp = pa.unsignedp || pb.unsignedp; in num_greater_eq()
1754 if (!unsignedp) in num_greater_eq()
1758 unsignedp = num_positive (pa, precision); in num_greater_eq()
1760 if (unsignedp != num_positive (pb, precision)) in num_greater_eq()
1761 return unsignedp; in num_greater_eq()
1775 lhs.unsignedp = lhs.unsignedp || rhs.unsignedp; in num_bitwise_op()
1816 lhs.unsignedp = false; in num_inequality_op()
1832 lhs.unsignedp = false; in num_equality_op()
1843 if (num.unsignedp || x) in num_rshift()
1883 num.overflow = !num.unsignedp && !num_zerop (num); in num_lshift()
1905 if (num.unsignedp) in num_lshift()
1945 num.unsignedp = false; in num_unary_op()
1965 if (!rhs.unsignedp && !num_positive (rhs, precision)) in num_binary_op()
1990 result.unsignedp = lhs.unsignedp || rhs.unsignedp; in num_binary_op()
1994 if (!result.unsignedp) in num_binary_op()
2007 result.unsignedp = lhs.unsignedp || rhs.unsignedp; in num_binary_op()
2011 if (!result.unsignedp) in num_binary_op()
2058 result.unsignedp = true; in num_part_mul()
2069 bool unsignedp = lhs.unsignedp || rhs.unsignedp; in num_mul() local
2074 if (!unsignedp) in num_mul()
2103 if (unsignedp) in num_mul()
2108 result.unsignedp = unsignedp; in num_mul()
2123 bool unsignedp = lhs.unsignedp || rhs.unsignedp; in num_div_op() local
2128 if (!unsignedp) in num_div_op()
2169 rhs.unsignedp = true; in num_div_op()
2170 lhs.unsignedp = true; in num_div_op()
2194 result.unsignedp = unsignedp; in num_div_op()
2196 if (!unsignedp) in num_div_op()
2208 lhs.unsignedp = unsignedp; in num_div_op()