Home
last modified time | relevance | path

Searched refs:BigInteger (Results 1 – 2 of 2) 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.h28 class BigInteger {
32 BigInteger(const BigInteger& rhs) : count_(rhs.count_) { in BigInteger() function
36 explicit BigInteger(uint64_t u) : count_(1) { in BigInteger() function
40 BigInteger(const char* decimals, size_t length) : count_(1) { in BigInteger() function
55 BigInteger& operator=(const BigInteger &rhs)
64 BigInteger& operator=(uint64_t u) {
70 BigInteger& operator+=(uint64_t u) {
87 BigInteger& operator*=(uint64_t u) {
105 BigInteger& operator*=(uint32_t u) {
128 BigInteger& operator<<=(size_t shift) {
[all …]
H A Dstrtod.h54 inline int CheckWithinHalfULP(double b, const BigInteger& d, int dExp) { in CheckWithinHalfULP()
96 BigInteger dS = d; in CheckWithinHalfULP()
99 BigInteger bS(bInt); in CheckWithinHalfULP()
102 BigInteger hS(1); in CheckWithinHalfULP()
105 BigInteger delta(0); in CheckWithinHalfULP()
207 const BigInteger dInt(decimals, length); in StrtodBigInteger()