Searched refs:LargestUInt (Results 1 – 11 of 11) sorted by relevance
95 typedef unsigned int LargestUInt; typedef107 typedef UInt64 LargestUInt; typedef
133 typedef Json::LargestUInt LargestUInt; typedef142 static const LargestUInt maxLargestUInt;271 LargestUInt asLargestUInt() const;480 LargestUInt uint_;
198 std::string JSON_API valueToString(LargestUInt value);
52 uintToStringBufferSize = 3 * sizeof(LargestUInt) + 163 static inline void uintToString(LargestUInt value, char*& current) { in uintToString()
523 Value::LargestUInt maxIntegerValue = in decodeNumber()524 isNegative ? Value::LargestUInt(-Value::minLargestInt) in decodeNumber()526 Value::LargestUInt threshold = maxIntegerValue / 10; in decodeNumber()527 Value::LargestUInt value = 0; in decodeNumber()549 else if (value <= Value::LargestUInt(Value::maxInt)) in decodeNumber()
52 const LargestInt Value::minLargestInt = LargestInt(~(LargestUInt(-1) / 2));53 const LargestInt Value::maxLargestInt = LargestInt(LargestUInt(-1) / 2);54 const LargestUInt Value::maxLargestUInt = LargestUInt(-1);650 LargestUInt Value::asLargestUInt() const { in asLargestUInt()1114 return value_.int_ >= 0 && LargestUInt(value_.int_) <= LargestUInt(maxUInt); in isUInt()
45 uintToString(LargestUInt(value), current); in valueToString()52 std::string valueToString(LargestUInt value) { in valueToString()67 return valueToString(LargestUInt(value)); in valueToString()
232 typedef unsigned int LargestUInt; typedef244 typedef UInt64 LargestUInt; typedef560 typedef Json::LargestUInt LargestUInt; typedef570 static const LargestUInt maxLargestUInt;727 LargestUInt asLargestUInt() const;973 LargestUInt uint_;1982 std::string JSON_API valueToString(LargestUInt value);
138 uintToStringBufferSize = 3 * sizeof(LargestUInt) + 1149 static inline void uintToString(LargestUInt value, char*& current) { in uintToString()759 Value::LargestUInt maxIntegerValue = in decodeNumber()760 isNegative ? Value::LargestUInt(Value::maxLargestInt) + 1 in decodeNumber()762 Value::LargestUInt threshold = maxIntegerValue / 10; in decodeNumber()763 Value::LargestUInt value = 0; in decodeNumber()785 else if (value <= Value::LargestUInt(Value::maxInt)) in decodeNumber()1741 Value::LargestUInt maxIntegerValue = in decodeNumber()1742 isNegative ? Value::LargestUInt(-Value::minLargestInt) in decodeNumber()1744 Value::LargestUInt threshold = maxIntegerValue / 10; in decodeNumber()[all …]
98 Types Json::LargestInt and Json::LargestUInt have been added. They are110 the integer as a LargestInt/LargestUInt respectively. Those functions
264 JSONTEST_ASSERT_EQUAL(Json::LargestUInt(0), null_.asLargestUInt()); in JSONTEST_FIXTURE()