Lines Matching refs:ten_mk
552 DiyFp ten_mk; // Cached power of ten: 10^-k in Grisu3() local
561 &ten_mk, &mk); in Grisu3()
562 DOUBLE_CONVERSION_ASSERT((kMinimalTargetExponent <= w.e() + ten_mk.e() + in Grisu3()
564 (kMaximalTargetExponent >= w.e() + ten_mk.e() + in Grisu3()
575 DiyFp scaled_w = DiyFp::Times(w, ten_mk); in Grisu3()
577 boundary_plus.e() + ten_mk.e() + DiyFp::kSignificandSize); in Grisu3()
583 DiyFp scaled_boundary_minus = DiyFp::Times(boundary_minus, ten_mk); in Grisu3()
584 DiyFp scaled_boundary_plus = DiyFp::Times(boundary_plus, ten_mk); in Grisu3()
611 DiyFp ten_mk; // Cached power of ten: 10^-k in Grisu3Counted() local
620 &ten_mk, &mk); in Grisu3Counted()
621 DOUBLE_CONVERSION_ASSERT((kMinimalTargetExponent <= w.e() + ten_mk.e() + in Grisu3Counted()
623 (kMaximalTargetExponent >= w.e() + ten_mk.e() + in Grisu3Counted()
634 DiyFp scaled_w = DiyFp::Times(w, ten_mk); in Grisu3Counted()