Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/rapidjson/1.1.0/include/rapidjson/internal/
H A Dbiginteger.h44 const size_t kMaxDigitPerIteration = 19; // 2^64 = 18446744073709551616 > 10^19 in BigInteger() local
45 while (length >= kMaxDigitPerIteration) { in BigInteger()
46 AppendDecimal64(decimals + i, decimals + i + kMaxDigitPerIteration); in BigInteger()
47 length -= kMaxDigitPerIteration; in BigInteger()
48 i += kMaxDigitPerIteration; in BigInteger()