Searched refs:pow5 (Results 1 – 5 of 5) sorted by relevance
/external/rust/crates/ryu/src/ |
D | f2s_intrinsics.rs | 83 let pow5 = unsafe { d2s::compute_inv_pow5(q) }; in mul_pow5_inv_div_pow2() localVariable 84 mul_shift_32(m, pow5.1 + 1, j) in mul_pow5_inv_div_pow2() 104 let pow5 = unsafe { d2s::compute_pow5(i) }; in mul_pow5_div_pow2() localVariable 105 mul_shift_32(m, pow5.1, j) in mul_pow5_div_pow2()
|
/external/llvm/lib/Support/ |
D | APFloat.cpp | 467 integerPart scratch[maxPowerOfFiveParts], *p1, *p2, *pow5; in powerOf5() local 478 pow5 = pow5s; in powerOf5() 488 APInt::tcFullMultiply(pow5, pow5 - pc, pow5 - pc, pc, pc); in powerOf5() 490 if (pow5[pc - 1] == 0) in powerOf5() 498 APInt::tcFullMultiply(p2, p1, pow5, result, pc); in powerOf5() 510 pow5 += pc; in powerOf5() 2464 APFloat pow5(calcSemantics); in roundSignificandWithExponent() local 2468 powStatus = pow5.convertFromUnsignedParts(pow5Parts, pow5PartCount, in roundSignificandWithExponent() 2479 calcLostFraction = decSig.multiplySignificand(pow5, nullptr); in roundSignificandWithExponent() 2482 calcLostFraction = decSig.divideSignificand(pow5); in roundSignificandWithExponent()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | APFloat.cpp | 592 APFloatBase::integerPart scratch[maxPowerOfFiveParts], *p1, *p2, *pow5; in powerOf5() local 603 pow5 = pow5s; in powerOf5() 613 APInt::tcFullMultiply(pow5, pow5 - pc, pow5 - pc, pc, pc); in powerOf5() 615 if (pow5[pc - 1] == 0) in powerOf5() 623 APInt::tcFullMultiply(p2, p1, pow5, result, pc); in powerOf5() 635 pow5 += pc; in powerOf5() 2444 IEEEFloat pow5(calcSemantics); in roundSignificandWithExponent() local 2448 powStatus = pow5.convertFromUnsignedParts(pow5Parts, pow5PartCount, in roundSignificandWithExponent() 2459 calcLostFraction = decSig.multiplySignificand(pow5); in roundSignificandWithExponent() 2462 calcLostFraction = decSig.divideSignificand(pow5); in roundSignificandWithExponent()
|
/external/llvm-project/llvm/lib/Support/ |
D | APFloat.cpp | 606 APFloatBase::integerPart scratch[maxPowerOfFiveParts], *p1, *p2, *pow5; in powerOf5() local 617 pow5 = pow5s; in powerOf5() 627 APInt::tcFullMultiply(pow5, pow5 - pc, pow5 - pc, pc, pc); in powerOf5() 629 if (pow5[pc - 1] == 0) in powerOf5() 637 APInt::tcFullMultiply(p2, p1, pow5, result, pc); in powerOf5() 649 pow5 += pc; in powerOf5() 2627 IEEEFloat pow5(calcSemantics); in roundSignificandWithExponent() local 2631 powStatus = pow5.convertFromUnsignedParts(pow5Parts, pow5PartCount, in roundSignificandWithExponent() 2642 calcLostFraction = decSig.multiplySignificand(pow5); in roundSignificandWithExponent() 2645 calcLostFraction = decSig.divideSignificand(pow5); in roundSignificandWithExponent()
|
/external/fmtlib/include/fmt/ |
D | format-inl.h | 1909 uint64_t pow5 = data::powers_of_5_64[offset]; 1910 uint128_wrapper recovered_cache = umul128(base_cache.high(), pow5); 1912 umul128(base_cache.low() - (kb < 0 ? 1u : 0u), pow5);
|