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

/external/chromium_org/v8/test/cctest/
H A Dtest-double.cc56 DiyFp diy_fp = Double(ordered).AsDiyFp(); local
57 CHECK_EQ(0x12 - 0x3FF - 52, diy_fp.e());
59 CHECK(V8_2PART_UINT64_C(0x00134567, 89ABCDEF) == diy_fp.f()); // NOLINT
62 diy_fp = Double(min_double64).AsDiyFp();
63 CHECK_EQ(-0x3FF - 52 + 1, diy_fp.e());
65 CHECK(1 == diy_fp.f()); // NOLINT
68 diy_fp = Double(max_double64).AsDiyFp();
69 CHECK_EQ(0x7FE - 0x3FF - 52, diy_fp.e());
70 CHECK(V8_2PART_UINT64_C(0x001fffff, ffffffff) == diy_fp.f()); // NOLINT
76 DiyFp diy_fp local
155 DiyFp diy_fp = Double(1.5).AsNormalizedDiyFp(); local
[all...]
H A Dtest-strtod.cc376 DiyFp diy_fp) {
380 other.AssignUInt64(diy_fp.f());
386 if (diy_fp.e() >= 0) {
387 other.ShiftLeft(diy_fp.e());
389 bignum.ShiftLeft(-diy_fp.e());
374 CompareBignumToDiyFp(const Bignum& bignum_digits, int bignum_exponent, DiyFp diy_fp) argument
/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/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Ddouble.h54 explicit Double(DiyFp diy_fp) argument
55 : d64_(DiyFpToUint64(diy_fp)) {}
217 static uint64_t DiyFpToUint64(DiyFp diy_fp) { argument
218 uint64_t significand = diy_fp.f();
219 int exponent = diy_fp.e();
/external/chromium_org/v8/src/
H A Ddouble.h54 explicit Double(DiyFp diy_fp) argument
55 : d64_(DiyFpToUint64(diy_fp)) {}
202 static uint64_t DiyFpToUint64(DiyFp diy_fp) { argument
203 uint64_t significand = diy_fp.f();
204 int exponent = diy_fp.e();
/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 4151 milliseconds