Home
last modified time | relevance | path

Searched refs:Int64 (Results 1 – 11 of 11) sorted by relevance

/AliOS-Things-master/components/jsoncpp/include/json/
A Dvalue.h204 using Int64 = Json::Int64; variable
239 static constexpr Int64 minInt64 = Int64(~(UInt64(-1) / 2));
241 static constexpr Int64 maxInt64 = Int64(UInt64(-1) / 2);
319 Value(Int64 value);
389 Int64 asInt64() const;
667 template <> inline Int64 Value::as<Int64>() const { return asInt64(); }
668 template <> inline bool Value::is<Int64>() const { return isInt64(); }
A Dconfig.h117 using Int64 = __int64; variable
120 using Int64 = int64_t; variable
123 using LargestInt = Int64;
/AliOS-Things-master/components/oss/src/external/json/
A Djson-forwards.h250 typedef __int64 Int64; typedef
253 typedef int64_t Int64; typedef
256 typedef Int64 LargestInt;
A Djson.h284 typedef __int64 Int64; typedef
287 typedef int64_t Int64; typedef
290 typedef Int64 LargestInt;
649 typedef Json::Int64 Int64; typedef
678 static const Int64 minInt64;
680 static const Int64 maxInt64;
758 Value(Int64 value);
834 Int64 asInt64() const;
A Djsoncpp.cpp2543 const Int64 Value::minInt64 = Int64(~(UInt64(-1) / 2));
2544 const Int64 Value::maxInt64 = Int64(UInt64(-1) / 2);
2565 return static_cast<double>(Int64(value / 2)) * 2.0 + static_cast<double>(Int64(value & 1)); in integerToDouble()
2898 Value::Value(Int64 value) { in Value()
3282 Value::Int64 Value::asInt64() const { in asInt64()
3285 return Int64(value_.int_); in asInt64()
3288 return Int64(value_.uint_); in asInt64()
3292 return Int64(value_.real_); in asInt64()
/AliOS-Things-master/components/jsoncpp/src/test_lib_json/
A Dmain.cpp56 return static_cast<double>(Json::Int64(value / 2)) * 2.0 + in uint64ToDouble()
57 static_cast<double>(Json::Int64(value & 1)); in uint64ToDouble()
980 val = Json::Value(Json::Int64(1) << 40); in JSONTEST_FIXTURE_LOCAL()
996 JSONTEST_ASSERT_EQUAL((Json::Int64(1) << 40), val.asInt64()); in JSONTEST_FIXTURE_LOCAL()
1001 JSONTEST_ASSERT_EQUAL((Json::Int64(1) << 40), val.asFloat()); in JSONTEST_FIXTURE_LOCAL()
1022 JSONTEST_ASSERT_EQUAL((Json::Int64(1) << 40), val.asInt64()); in JSONTEST_FIXTURE_LOCAL()
1032 val = Json::Value((Json::Int64(1) << 40) / 1.0); in JSONTEST_FIXTURE_LOCAL()
1060 val = Json::Value(-(Json::Int64(1) << 40)); in JSONTEST_FIXTURE_LOCAL()
1083 val = Json::Value(Json::Int64(kint64max)); in JSONTEST_FIXTURE_LOCAL()
1136 val = Json::Value(Json::Int64(kint64min)); in JSONTEST_FIXTURE_LOCAL()
[all …]
A Djsontest.h94 TestResult& operator<<(Json::Int64 value);
A Djsontest.cpp190 TestResult& TestResult::operator<<(Json::Int64 value) { in operator <<()
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/ruy/
A Dsize_util_test.cc91 TEST(SizeUtilTest, Int64) { SizeUtilTest<std::int64_t>(); } in TEST() argument
/AliOS-Things-master/components/jsoncpp/src/lib_json/
A Djson_value.cpp94 return static_cast<double>(Int64(value / 2)) * 2.0 + in integerToDouble()
95 static_cast<double>(Int64(value & 1)); in integerToDouble()
386 Value::Value(Int64 value) { in Value()
700 Value::Int64 Value::asInt64() const { in asInt64()
703 return Int64(value_.int_); in asInt64()
706 return Int64(value_.uint_); in asInt64()
710 return Int64(value_.real_); in asInt64()
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/experimental/examples/unity/TensorFlowLitePlugin/Assets/TensorFlowLite/SDK/Scripts/
A DInterpreter.cs177 Int64 = 4, enumerator

Completed in 34 milliseconds