Lines Matching refs:LargestUInt
138 uintToStringBufferSize = 3 * sizeof(LargestUInt) + 1
149 static inline void uintToString(LargestUInt value, char*& current) { in uintToString()
744 Value::LargestUInt maxIntegerValue = in decodeNumber()
745 isNegative ? Value::LargestUInt(-Value::minLargestInt) in decodeNumber()
747 Value::LargestUInt threshold = maxIntegerValue / 10; in decodeNumber()
748 Value::LargestUInt value = 0; in decodeNumber()
768 else if (value <= Value::LargestUInt(Value::maxInt)) in decodeNumber()
1707 Value::LargestUInt maxIntegerValue = in decodeNumber()
1708 isNegative ? Value::LargestUInt(-Value::minLargestInt) in decodeNumber()
1710 Value::LargestUInt threshold = maxIntegerValue / 10; in decodeNumber()
1711 Value::LargestUInt value = 0; in decodeNumber()
1731 else if (value <= Value::LargestUInt(Value::maxInt)) in decodeNumber()
2429 const LargestInt Value::minLargestInt = LargestInt(~(LargestUInt(-1) / 2));
2430 const LargestInt Value::maxLargestInt = LargestInt(LargestUInt(-1) / 2);
2431 const LargestUInt Value::maxLargestUInt = LargestUInt(-1);
3128 LargestUInt Value::asLargestUInt() const { in asLargestUInt()
3618 return value_.int_ >= 0 && LargestUInt(value_.int_) <= LargestUInt(maxUInt); in isUInt()
4017 uintToString(LargestUInt(value), current); in valueToString()
4024 std::string valueToString(LargestUInt value) { in valueToString()
4039 return valueToString(LargestUInt(value)); in valueToString()