Searched refs:diy_fp (Results 1 - 3 of 3) sorted by relevance

/external/v8/test/cctest/
H A Dtest-double.cc30 DiyFp diy_fp = Double(ordered).AsDiyFp(); local
31 CHECK_EQ(0x12 - 0x3FF - 52, diy_fp.e());
33 CHECK(V8_2PART_UINT64_C(0x00134567, 89ABCDEF) == diy_fp.f()); // NOLINT
36 diy_fp = Double(min_double64).AsDiyFp();
37 CHECK_EQ(-0x3FF - 52 + 1, diy_fp.e());
39 CHECK(1 == diy_fp.f()); // NOLINT
42 diy_fp = Double(max_double64).AsDiyFp();
43 CHECK_EQ(0x7FE - 0x3FF - 52, diy_fp.e());
44 CHECK(V8_2PART_UINT64_C(0x001fffff, ffffffff) == diy_fp.f()); // NOLINT
50 DiyFp diy_fp local
144 DiyFp diy_fp = Double(1.5).AsNormalizedDiyFp(); local
[all...]
H A Dtest-strtod.cc351 DiyFp diy_fp) {
355 other.AssignUInt64(diy_fp.f());
361 if (diy_fp.e() >= 0) {
362 other.ShiftLeft(diy_fp.e());
364 bignum.ShiftLeft(-diy_fp.e());
349 CompareBignumToDiyFp(const Bignum& bignum_digits, int bignum_exponent, DiyFp diy_fp) argument
/external/v8/src/
H A Ddouble.h54 explicit Double(DiyFp diy_fp) argument
55 : d64_(DiyFpToUint64(diy_fp)) {}
208 static uint64_t DiyFpToUint64(DiyFp diy_fp) { argument
209 uint64_t significand = diy_fp.f();
210 int exponent = diy_fp.e();

Completed in 1373 milliseconds