Lines Matching refs:Overflow
619 std::optional<bool> Overflow;
622 // If we can actually detect overflow do so. Otherwise leave Overflow as
627 Overflow = (LHS.isNonNegative() == RHS.isNonNegative() &&
631 Overflow = (LHS.isNonNegative() != RHS.isNonNegative() &&
640 Overflow = false;
644 Overflow = true;
651 Overflow = false;
655 Overflow = true;
706 if (Overflow) {
708 if (!(*Overflow)) {