Searched refs:UInt64 (Results 1 – 9 of 9) sorted by relevance
203 using UInt64 = Json::UInt64; variable239 static constexpr Int64 minInt64 = Int64(~(UInt64(-1) / 2));241 static constexpr Int64 maxInt64 = Int64(UInt64(-1) / 2);243 static constexpr UInt64 maxUInt64 = UInt64(-1);320 Value(UInt64 value);390 UInt64 asUInt64() const;670 template <> inline UInt64 Value::as<UInt64>() const { return asUInt64(); }671 template <> inline bool Value::is<UInt64>() const { return isUInt64(); }
118 using UInt64 = unsigned __int64; variable121 using UInt64 = uint64_t; variable124 using LargestUInt = UInt64;
251 typedef unsigned __int64 UInt64; typedef254 typedef uint64_t UInt64; typedef257 typedef UInt64 LargestUInt;
285 typedef unsigned __int64 UInt64; typedef288 typedef uint64_t UInt64; typedef291 typedef UInt64 LargestUInt;648 typedef Json::UInt64 UInt64; typedef682 static const UInt64 maxUInt64;759 Value(UInt64 value);835 UInt64 asUInt64() const;
2543 const Int64 Value::minInt64 = Int64(~(UInt64(-1) / 2));2544 const Int64 Value::maxInt64 = Int64(UInt64(-1) / 2);2545 const UInt64 Value::maxUInt64 = UInt64(-1);2564 static inline double integerToDouble(Json::UInt64 value) { in integerToDouble()2902 Value::Value(UInt64 value) { in Value()3303 Value::UInt64 Value::asUInt64() const { in asUInt64()3307 return UInt64(value_.int_); in asUInt64()3309 return UInt64(value_.uint_); in asUInt64()3313 return UInt64(value_.real_); in asUInt64()3858 return value_.uint_ <= UInt64(maxInt64); in isInt64()
93 static inline double integerToDouble(Json::UInt64 value) { in integerToDouble()390 Value::Value(UInt64 value) { in Value()721 Value::UInt64 Value::asUInt64() const { in asUInt64()725 return UInt64(value_.int_); in asUInt64()727 return UInt64(value_.uint_); in asUInt64()731 return UInt64(value_.real_); in asUInt64()1305 return value_.uint_ <= UInt64(maxInt64); in isInt64()
95 TestResult& operator<<(Json::UInt64 value);
51 static inline double uint64ToDouble(Json::UInt64 value) { in uint64ToDouble()55 static inline double uint64ToDouble(Json::UInt64 value) { in uint64ToDouble()1006 val = Json::Value(Json::UInt64(1) << 40); in JSONTEST_FIXTURE_LOCAL()1125 JSONTEST_ASSERT_EQUAL(Json::UInt64(1) << 63, val.asUInt64()); in JSONTEST_FIXTURE_LOCAL()1126 JSONTEST_ASSERT_EQUAL(Json::UInt64(1) << 63, val.asLargestUInt()); in JSONTEST_FIXTURE_LOCAL()1128 JSONTEST_ASSERT_EQUAL(float(Json::UInt64(1) << 63), val.asFloat()); in JSONTEST_FIXTURE_LOCAL()1185 const auto ten_to_19 = static_cast<Json::UInt64>(1e19); in JSONTEST_FIXTURE_LOCAL()1186 val = Json::Value(Json::UInt64(ten_to_19)); in JSONTEST_FIXTURE_LOCAL()1233 val = Json::Value(Json::UInt64(kuint64max)); in JSONTEST_FIXTURE_LOCAL()1420 JSONTEST_ASSERT_EQUAL((Json::UInt64(1) << 32) - Json::UInt64(1), in JSONTEST_FIXTURE_LOCAL()[all …]
194 TestResult& TestResult::operator<<(Json::UInt64 value) { in operator <<()
Completed in 39 milliseconds