Lines Matching defs:negate_value
726 // Returns true if negate_value is true and the next character on the
730 inline bool RejectParseDueToLeadingSign(std::istream& is, bool negate_value,
732 if (negate_value) {
747 // If negate_value is true then the number may not have a leading minus or
756 inline std::istream& ParseNormalFloat(std::istream& is, bool negate_value,
758 if (RejectParseDueToLeadingSign(is, negate_value, value)) {
763 if (negate_value) {
774 value.set_value((value.isNegative() || negate_value) ? T::lowest()
785 // If negate_value is true then the number may not have a leading minus or
796 std::istream& is, bool negate_value,
800 ParseNormalFloat(is, negate_value, float_val);
850 bool negate_value = false;
853 return ParseNormalFloat(is, negate_value, value);
857 negate_value = true;
867 return ParseNormalFloat(is, negate_value, value);
872 return ParseNormalFloat(is, negate_value, value);
1021 static_cast<uint_type>(negate_value ? 1 : 0) << HF::top_bit_left_shift);