Home
last modified time | relevance | path

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

/external/v8/src/
Dcached-powers.cc25 {V8_2PART_UINT64_C(0xfa8fd5a0, 081c0288), -1220, -348},
26 {V8_2PART_UINT64_C(0xbaaee17f, a23ebf76), -1193, -340},
27 {V8_2PART_UINT64_C(0x8b16fb20, 3055ac76), -1166, -332},
28 {V8_2PART_UINT64_C(0xcf42894a, 5dce35ea), -1140, -324},
29 {V8_2PART_UINT64_C(0x9a6bb0aa, 55653b2d), -1113, -316},
30 {V8_2PART_UINT64_C(0xe61acf03, 3d1a45df), -1087, -308},
31 {V8_2PART_UINT64_C(0xab70fe17, c79ac6ca), -1060, -300},
32 {V8_2PART_UINT64_C(0xff77b1fc, bebcdc4f), -1034, -292},
33 {V8_2PART_UINT64_C(0xbe5691ef, 416bd60c), -1007, -284},
34 {V8_2PART_UINT64_C(0x8dd01fad, 907ffc3c), -980, -276},
[all …]
Dstrtod.cc36 static const uint64_t kMaxUint64 = V8_2PART_UINT64_C(0xFFFFFFFF, FFFFFFFF);
217 case 1: return DiyFp(V8_2PART_UINT64_C(0xa0000000, 00000000), -60); in AdjustmentPowerOfTen()
218 case 2: return DiyFp(V8_2PART_UINT64_C(0xc8000000, 00000000), -57); in AdjustmentPowerOfTen()
219 case 3: return DiyFp(V8_2PART_UINT64_C(0xfa000000, 00000000), -54); in AdjustmentPowerOfTen()
220 case 4: return DiyFp(V8_2PART_UINT64_C(0x9c400000, 00000000), -50); in AdjustmentPowerOfTen()
221 case 5: return DiyFp(V8_2PART_UINT64_C(0xc3500000, 00000000), -47); in AdjustmentPowerOfTen()
222 case 6: return DiyFp(V8_2PART_UINT64_C(0xf4240000, 00000000), -44); in AdjustmentPowerOfTen()
223 case 7: return DiyFp(V8_2PART_UINT64_C(0x98968000, 00000000), -40); in AdjustmentPowerOfTen()
Ddouble.h20 static const uint64_t kSignMask = V8_2PART_UINT64_C(0x80000000, 00000000);
21 static const uint64_t kExponentMask = V8_2PART_UINT64_C(0x7FF00000, 00000000);
23 V8_2PART_UINT64_C(0x000FFFFF, FFFFFFFF);
24 static const uint64_t kHiddenBit = V8_2PART_UINT64_C(0x00100000, 00000000);
175 static const uint64_t kInfinity = V8_2PART_UINT64_C(0x7FF00000, 00000000);
Dfast-dtoa.cc440 DCHECK(V8_2PART_UINT64_C(0xFFFFFFFF, FFFFFFFF) / 10 >= one.f()); in DigitGen()
548 DCHECK(V8_2PART_UINT64_C(0xFFFFFFFF, FFFFFFFF) / 10 >= one.f()); in DigitGenCounted()
Dfixed-dtoa.cc318 const uint64_t kFive17 = V8_2PART_UINT64_C(0xB1, A2BC2EC5); // 5^17 in FastFixedDtoa()
Dbignum-dtoa.cc480 V8_2PART_UINT64_C(0x00100000, 00000000); in InitialScaledStartValuesNegativeExponentNegativePower()
Dconversions-inl.h128 const uint64_t kBottomBitMask = V8_2PART_UINT64_C(0x00000000, FFFFFFFF); in DoubleToUint32IfEqualToSelf()
Dbignum.cc282 const uint64_t kFive27 = V8_2PART_UINT64_C(0x6765c793, fa10079d); in MultiplyByPowerOfTen()
Dapi.cc5328 static const uint64_t value = V8_2PART_UINT64_C(0xFF00FF00, FF00FF00);
/external/v8/src/base/utils/
Drandom-number-generator.h115 static const int64_t kMultiplier = V8_2PART_UINT64_C(0x5, deece66d);
117 static const int64_t kMask = V8_2PART_UINT64_C(0xffff, ffffffff);
/external/v8/src/base/
Dmacros.h250 #define V8_2PART_UINT64_C(a, b) (((static_cast<uint64_t>(a) << 32) + 0x##b##u)) macro