Searched refs:UINT64_2PART_C (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Dcached-powers.cc49 {UINT64_2PART_C(0xfa8fd5a0, 081c0288), -1220, -348},
50 {UINT64_2PART_C(0xbaaee17f, a23ebf76), -1193, -340},
51 {UINT64_2PART_C(0x8b16fb20, 3055ac76), -1166, -332},
52 {UINT64_2PART_C(0xcf42894a, 5dce35ea), -1140, -324},
53 {UINT64_2PART_C(0x9a6bb0aa, 55653b2d), -1113, -316},
54 {UINT64_2PART_C(0xe61acf03, 3d1a45df), -1087, -308},
55 {UINT64_2PART_C(0xab70fe17, c79ac6ca), -1060, -300},
56 {UINT64_2PART_C(0xff77b1fc, bebcdc4f), -1034, -292},
57 {UINT64_2PART_C(0xbe5691ef, 416bd60c), -1007, -284},
58 {UINT64_2PART_C(
[all...]
H A Ddouble.h44 static const uint64_t kSignMask = UINT64_2PART_C(0x80000000, 00000000);
45 static const uint64_t kExponentMask = UINT64_2PART_C(0x7FF00000, 00000000);
46 static const uint64_t kSignificandMask = UINT64_2PART_C(0x000FFFFF, FFFFFFFF);
47 static const uint64_t kHiddenBit = UINT64_2PART_C(0x00100000, 00000000);
212 static const uint64_t kInfinity = UINT64_2PART_C(0x7FF00000, 00000000);
213 static const uint64_t kNaN = UINT64_2PART_C(0x7FF80000, 00000000);
H A Ddiy-fp.h86 const uint64_t k10MSBits = UINT64_2PART_C(0xFFC00000, 00000000);
112 static const uint64_t kUint64MSB = UINT64_2PART_C(0x80000000, 00000000);
H A Dstrtod.cc59 static const uint64_t kMaxUint64 = UINT64_2PART_C(0xFFFFFFFF, FFFFFFFF);
237 case 1: return DiyFp(UINT64_2PART_C(0xa0000000, 00000000), -60);
238 case 2: return DiyFp(UINT64_2PART_C(0xc8000000, 00000000), -57);
239 case 3: return DiyFp(UINT64_2PART_C(0xfa000000, 00000000), -54);
240 case 4: return DiyFp(UINT64_2PART_C(0x9c400000, 00000000), -50);
241 case 5: return DiyFp(UINT64_2PART_C(0xc3500000, 00000000), -47);
242 case 6: return DiyFp(UINT64_2PART_C(0xf4240000, 00000000), -44);
243 case 7: return DiyFp(UINT64_2PART_C(0x98968000, 00000000), -40);
H A Dfast-dtoa.cc464 ASSERT(UINT64_2PART_C(0xFFFFFFFF, FFFFFFFF) / 10 >= one.f());
572 ASSERT(UINT64_2PART_C(0xFFFFFFFF, FFFFFFFF) / 10 >= one.f());
H A Dutils.h83 // write UINT64_2PART_C(0x12345678,90123456);
84 #define UINT64_2PART_C(a, b) (((static_cast<uint64_t>(a) << 32) + 0x##b##u)) macro
H A Dbignum-dtoa.cc503 UINT64_2PART_C(0x00100000, 00000000);
H A Dfixed-dtoa.cc339 const uint64_t kFive17 = UINT64_2PART_C(0xB1, A2BC2EC5); // 5^17
H A Dbignum.cc305 const uint64_t kFive27 = UINT64_2PART_C(0x6765c793, fa10079d);

Completed in 381 milliseconds