Home
last modified time | relevance | path

Searched refs:UInt64 (Results 1 – 9 of 9) sorted by relevance

/AliOS-Things-master/components/jsoncpp/include/json/
A Dvalue.h203 using UInt64 = Json::UInt64; variable
239 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(); }
A Dconfig.h118 using UInt64 = unsigned __int64; variable
121 using UInt64 = uint64_t; variable
124 using LargestUInt = UInt64;
/AliOS-Things-master/components/oss/src/external/json/
A Djson-forwards.h251 typedef unsigned __int64 UInt64; typedef
254 typedef uint64_t UInt64; typedef
257 typedef UInt64 LargestUInt;
A Djson.h285 typedef unsigned __int64 UInt64; typedef
288 typedef uint64_t UInt64; typedef
291 typedef UInt64 LargestUInt;
648 typedef Json::UInt64 UInt64; typedef
682 static const UInt64 maxUInt64;
759 Value(UInt64 value);
835 UInt64 asUInt64() const;
A Djsoncpp.cpp2543 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()
/AliOS-Things-master/components/jsoncpp/src/lib_json/
A Djson_value.cpp93 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()
/AliOS-Things-master/components/jsoncpp/src/test_lib_json/
A Djsontest.h95 TestResult& operator<<(Json::UInt64 value);
A Dmain.cpp51 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 …]
A Djsontest.cpp194 TestResult& TestResult::operator<<(Json::UInt64 value) { in operator <<()

Completed in 39 milliseconds