HomeSort by relevance Sort by last modified time
    Searched defs:boundary_minus (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/v8/test/cctest/
test-double.cc 154 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, &boundary_plus)
    [all...]
  /external/chromium_org/v8/src/
fast-dtoa.cc 582 // 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 160 milliseconds