Searched defs:maxInt64 (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/jsoncpp/overrides/include/json/
H A Dvalue.h158 static const Int64 maxInt64; member in class:Json::Value
/external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
H A Djson_value.cpp45 const Int64 Value::maxInt64 = Int64( UInt64(-1)/2 ); member in class:Json::Value
801 JSON_ASSERT_MESSAGE(InRange(value_.real_, minInt64, maxInt64), "double out of Int64 range");
1447 return value_.uint_ <= UInt64(maxInt64);
1449 // Note that maxInt64 (= 2^63 - 1) is not exactly representable as a
1450 // double, so double(maxInt64) will be rounded up to 2^63. Therefore we
1453 value_.real_ < double(maxInt64) &&
/external/jsoncpp/chromium-overrides/include/json/
H A Dvalue.h158 static const Int64 maxInt64; member in class:Json::Value
/external/jsoncpp/chromium-overrides/src/lib_json/
H A Djson_value.cpp39 const Int64 Value::maxInt64 = Int64( UInt64(-1)/2 ); member in class:Json::Value
795 JSON_ASSERT_MESSAGE(InRange(value_.real_, minInt64, maxInt64), "double out of Int64 range");
1441 return value_.uint_ <= UInt64(maxInt64);
1443 // Note that maxInt64 (= 2^63 - 1) is not exactly representable as a
1444 // double, so double(maxInt64) will be rounded up to 2^63. Therefore we
1447 value_.real_ < double(maxInt64) &&
/external/jsoncpp/include/json/
H A Dvalue.h158 static const Int64 maxInt64; member in class:Json::Value
/external/jsoncpp/src/lib_json/
H A Djson_value.cpp35 const Int64 Value::maxInt64 = Int64( UInt64(-1)/2 ); member in class:Json::Value
791 JSON_ASSERT_MESSAGE(InRange(value_.real_, minInt64, maxInt64), "double out of Int64 range");
1437 return value_.uint_ <= UInt64(maxInt64);
1439 // Note that maxInt64 (= 2^63 - 1) is not exactly representable as a
1440 // double, so double(maxInt64) will be rounded up to 2^63. Therefore we
1443 value_.real_ < double(maxInt64) &&

Completed in 444 milliseconds