Home
last modified time | relevance | path

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

/external/icu/icu4c/source/i18n/
Ddouble-conversion-cached-powers.cpp59 {UINT64_2PART_C(0xfa8fd5a0, 081c0288), -1220, -348},
60 {UINT64_2PART_C(0xbaaee17f, a23ebf76), -1193, -340},
61 {UINT64_2PART_C(0x8b16fb20, 3055ac76), -1166, -332},
62 {UINT64_2PART_C(0xcf42894a, 5dce35ea), -1140, -324},
63 {UINT64_2PART_C(0x9a6bb0aa, 55653b2d), -1113, -316},
64 {UINT64_2PART_C(0xe61acf03, 3d1a45df), -1087, -308},
65 {UINT64_2PART_C(0xab70fe17, c79ac6ca), -1060, -300},
66 {UINT64_2PART_C(0xff77b1fc, bebcdc4f), -1034, -292},
67 {UINT64_2PART_C(0xbe5691ef, 416bd60c), -1007, -284},
68 {UINT64_2PART_C(0x8dd01fad, 907ffc3c), -980, -276},
[all …]
Ddouble-conversion-strtod.cpp70 static const uint64_t kMaxUint64 = UINT64_2PART_C(0xFFFFFFFF, FFFFFFFF);
273 case 1: return DiyFp(UINT64_2PART_C(0xa0000000, 00000000), -60); in AdjustmentPowerOfTen()
274 case 2: return DiyFp(UINT64_2PART_C(0xc8000000, 00000000), -57); in AdjustmentPowerOfTen()
275 case 3: return DiyFp(UINT64_2PART_C(0xfa000000, 00000000), -54); in AdjustmentPowerOfTen()
276 case 4: return DiyFp(UINT64_2PART_C(0x9c400000, 00000000), -50); in AdjustmentPowerOfTen()
277 case 5: return DiyFp(UINT64_2PART_C(0xc3500000, 00000000), -47); in AdjustmentPowerOfTen()
278 case 6: return DiyFp(UINT64_2PART_C(0xf4240000, 00000000), -44); in AdjustmentPowerOfTen()
279 case 7: return DiyFp(UINT64_2PART_C(0x98968000, 00000000), -40); in AdjustmentPowerOfTen()
Ddouble-conversion-ieee.h58 static const uint64_t kSignMask = UINT64_2PART_C(0x80000000, 00000000);
59 static const uint64_t kExponentMask = UINT64_2PART_C(0x7FF00000, 00000000);
60 static const uint64_t kSignificandMask = UINT64_2PART_C(0x000FFFFF, FFFFFFFF);
61 static const uint64_t kHiddenBit = UINT64_2PART_C(0x00100000, 00000000);
242 static const uint64_t kInfinity = UINT64_2PART_C(0x7FF00000, 00000000);
243 static const uint64_t kNaN = UINT64_2PART_C(0x7FF80000, 00000000);
Ddouble-conversion-diy-fp.h98 const uint64_t k10MSBits = UINT64_2PART_C(0xFFC00000, 00000000); in Normalize()
124 static const uint64_t kUint64MSB = UINT64_2PART_C(0x80000000, 00000000);
Ddouble-conversion-fast-dtoa.cpp393 ASSERT(UINT64_2PART_C(0xFFFFFFFF, FFFFFFFF) / 10 >= one.f()); in DigitGen()
503 ASSERT(UINT64_2PART_C(0xFFFFFFFF, FFFFFFFF) / 10 >= one.f()); in DigitGenCounted()
Ddouble-conversion-utils.h133 #define UINT64_2PART_C(a, b) (((static_cast<uint64_t>(a) << 32) + 0x##b##u)) macro
Ddouble-conversion-bignum.cpp315 const uint64_t kFive27 = UINT64_2PART_C(0x6765c793, fa10079d); in MultiplyByPowerOfTen()