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

/external/chromium_org/v8/test/cctest/
H A Dtest-double.cc154 DiyFp boundary_minus; local
156 Double(1.5).NormalizedBoundaries(&boundary_minus, &boundary_plus);
157 CHECK_EQ(diy_fp.e(), boundary_minus.e());
161 CHECK(diy_fp.f() - boundary_minus.f() == boundary_plus.f() - diy_fp.f());
162 CHECK((1 << 10) == diy_fp.f() - boundary_minus.f()); // NOLINT
165 Double(1.0).NormalizedBoundaries(&boundary_minus, &boundary_plus);
166 CHECK_EQ(diy_fp.e(), boundary_minus.e());
170 CHECK_GT(boundary_plus.f() - diy_fp.f(), diy_fp.f() - boundary_minus.f());
171 CHECK((1 << 9) == diy_fp.f() - boundary_minus.f()); // NOLINT
176 Double(min_double64).NormalizedBoundaries(&boundary_minus,
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Dfast-dtoa.cc606 // boundary_minus and boundary_plus are the boundaries between v and its
608 // boundary_minus and boundary_plus will round to v when convert to a double.
610 DiyFp boundary_minus, boundary_plus;
611 Double(v).NormalizedBoundaries(&boundary_minus, &boundary_plus);
640 // the difference between w and boundary_minus/plus (a power of 2) and to
644 DiyFp scaled_boundary_minus = DiyFp::Times(boundary_minus, ten_mk);
/external/chromium_org/v8/src/
H A Dfast-dtoa.cc582 // boundary_minus and boundary_plus are the boundaries between v and its
584 // boundary_minus and boundary_plus will round to v when convert to a double.
586 DiyFp boundary_minus, boundary_plus; local
587 Double(v).NormalizedBoundaries(&boundary_minus, &boundary_plus);
616 // the difference between w and boundary_minus/plus (a power of 2) and to
620 DiyFp scaled_boundary_minus = DiyFp::Times(boundary_minus, ten_mk);

Completed in 392 milliseconds