Lines Matching refs:ten_mk
612 DiyFp ten_mk; // Cached power of ten: 10^-k
621 &ten_mk, &mk);
622 ASSERT((kMinimalTargetExponent <= w.e() + ten_mk.e() +
624 (kMaximalTargetExponent >= w.e() + ten_mk.e() +
626 // Note that ten_mk is only an approximation of 10^-k. A DiyFp only contains a
627 // 64 bit significand and ten_mk is thus only precise up to 64 bits.
629 // The DiyFp::Times procedure rounds its result, and ten_mk is approximated
635 DiyFp scaled_w = DiyFp::Times(w, ten_mk);
637 boundary_plus.e() + ten_mk.e() + DiyFp::kSignificandSize);
643 DiyFp scaled_boundary_minus = DiyFp::Times(boundary_minus, ten_mk);
644 DiyFp scaled_boundary_plus = DiyFp::Times(boundary_plus, ten_mk);
671 DiyFp ten_mk; // Cached power of ten: 10^-k
680 &ten_mk, &mk);
681 ASSERT((kMinimalTargetExponent <= w.e() + ten_mk.e() +
683 (kMaximalTargetExponent >= w.e() + ten_mk.e() +
685 // Note that ten_mk is only an approximation of 10^-k. A DiyFp only contains a
686 // 64 bit significand and ten_mk is thus only precise up to 64 bits.
688 // The DiyFp::Times procedure rounds its result, and ten_mk is approximated
694 DiyFp scaled_w = DiyFp::Times(w, ten_mk);