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

  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
fast-dtoa.cc 613 DiyFp ten_mk; // Cached power of ten: 10^-k
622 &ten_mk, &mk);
623 ASSERT((kMinimalTargetExponent <= w.e() + ten_mk.e() +
625 (kMaximalTargetExponent >= w.e() + ten_mk.e() +
627 // Note that ten_mk is only an approximation of 10^-k. A DiyFp only contains a
628 // 64 bit significand and ten_mk is thus only precise up to 64 bits.
630 // The DiyFp::Times procedure rounds its result, and ten_mk is approximated
636 DiyFp scaled_w = DiyFp::Times(w, ten_mk);
638 boundary_plus.e() + ten_mk.e() + DiyFp::kSignificandSize);
644 DiyFp scaled_boundary_minus = DiyFp::Times(boundary_minus, ten_mk);
    [all...]
  /external/chromium_org/v8/src/
fast-dtoa.cc 589 DiyFp ten_mk; // Cached power of ten: 10^-k local
598 &ten_mk, &mk);
599 ASSERT((kMinimalTargetExponent <= w.e() + ten_mk.e() +
601 (kMaximalTargetExponent >= w.e() + ten_mk.e() +
603 // Note that ten_mk is only an approximation of 10^-k. A DiyFp only contains a
604 // 64 bit significand and ten_mk is thus only precise up to 64 bits.
606 // The DiyFp::Times procedure rounds its result, and ten_mk is approximated
612 DiyFp scaled_w = DiyFp::Times(w, ten_mk);
614 boundary_plus.e() + ten_mk.e() + DiyFp::kSignificandSize);
620 DiyFp scaled_boundary_minus = DiyFp::Times(boundary_minus, ten_mk);
648 DiyFp ten_mk; \/\/ Cached power of ten: 10^-k local
    [all...]

Completed in 87 milliseconds