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);
222 return DiyFp(V8_2PART_UINT64_C(0xA0000000, 00000000), -60); in AdjustmentPowerOfTen()
224 return DiyFp(V8_2PART_UINT64_C(0xC8000000, 00000000), -57); in AdjustmentPowerOfTen()
226 return DiyFp(V8_2PART_UINT64_C(0xFA000000, 00000000), -54); in AdjustmentPowerOfTen()
228 return DiyFp(V8_2PART_UINT64_C(0x9C400000, 00000000), -50); in AdjustmentPowerOfTen()
230 return DiyFp(V8_2PART_UINT64_C(0xC3500000, 00000000), -47); in AdjustmentPowerOfTen()
232 return DiyFp(V8_2PART_UINT64_C(0xF4240000, 00000000), -44); in AdjustmentPowerOfTen()
234 return DiyFp(V8_2PART_UINT64_C(0x98968000, 00000000), -40); in AdjustmentPowerOfTen()
Ddouble.h21 static constexpr uint64_t kSignMask = V8_2PART_UINT64_C(0x80000000, 00000000);
23 V8_2PART_UINT64_C(0x7FF00000, 00000000);
25 V8_2PART_UINT64_C(0x000FFFFF, FFFFFFFF);
27 V8_2PART_UINT64_C(0x00100000, 00000000);
179 static constexpr uint64_t kInfinity = V8_2PART_UINT64_C(0x7FF00000, 00000000);
Dfast-dtoa.cc449 DCHECK(V8_2PART_UINT64_C(0xFFFFFFFF, FFFFFFFF) / 10 >= one.f()); in DigitGen()
557 DCHECK(V8_2PART_UINT64_C(0xFFFFFFFF, FFFFFFFF) / 10 >= one.f()); in DigitGenCounted()
Dconversions-inl.h118 const uint64_t kBottomBitMask = V8_2PART_UINT64_C(0x00000000, FFFFFFFF); in DoubleToUint32IfEqualToSelf()
Dfixed-dtoa.cc317 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()
Dbignum.cc281 const uint64_t kFive27 = V8_2PART_UINT64_C(0x6765C793, fa10079d); in MultiplyByPowerOfTen()
Dapi.cc5275 static const uint64_t value = V8_2PART_UINT64_C(0xFF00FF00, FF00FF00);
/external/v8/src/base/utils/
Drandom-number-generator.h132 static const int64_t kMultiplier = V8_2PART_UINT64_C(0x5, deece66d);
134 static const int64_t kMask = V8_2PART_UINT64_C(0xffff, ffffffff);
/external/v8/src/base/
Dmacros.h347 #define V8_2PART_UINT64_C(a, b) (((static_cast<uint64_t>(a) << 32) + 0x##b##u)) macro