Lines Matching defs:negate_value
810 // Returns true if negate_value is true and the next character on the
814 inline bool RejectParseDueToLeadingSign(std::istream& is, bool negate_value,
816 if (negate_value) {
831 // If negate_value is true then the number may not have a leading minus or
840 inline std::istream& ParseNormalFloat(std::istream& is, bool negate_value,
842 if (RejectParseDueToLeadingSign(is, negate_value, value)) {
847 if (negate_value) {
858 value.set_value((value.isNegative() | negate_value) ? T::lowest()
869 // If negate_value is true then the number may not have a leading minus or
880 std::istream& is, bool negate_value,
884 ParseNormalFloat(is, negate_value, float_val);
975 bool negate_value = false;
978 return ParseNormalFloat(is, negate_value, value);
982 negate_value = true;
992 return ParseNormalFloat(is, negate_value, value);
997 return ParseNormalFloat(is, negate_value, value);
1213 static_cast<uint_type>(negate_value ? 1 : 0) << HF::top_bit_left_shift);