Home | History | Annotate | Download | only in lib_json

Lines Matching refs:maxInt64

45 const Int64 Value::maxInt64 = Int64(UInt64(-1) / 2);
607 JSON_ASSERT_MESSAGE(InRange(value_.real_, minInt64, maxInt64),
1132 return value_.uint_ <= UInt64(maxInt64);
1134 // Note that maxInt64 (= 2^63 - 1) is not exactly representable as a
1135 // double, so double(maxInt64) will be rounded up to 2^63. Therefore we
1138 value_.real_ < double(maxInt64) && IsIntegral(value_.real_);