Lines Matching refs:__lastRemovedDigit
182 uint8_t __lastRemovedDigit = 0; in __f2d() local
196 __lastRemovedDigit = static_cast<uint8_t>(__mulPow5InvDivPow2(__mv, __q - 1, in __f2d()
221 …__lastRemovedDigit = static_cast<uint8_t>(__mulPow5divPow2(__mv, static_cast<uint32_t>(__i + 1), _… in __f2d()
250 __vrIsTrailingZeros &= __lastRemovedDigit == 0; in __f2d()
251 __lastRemovedDigit = static_cast<uint8_t>(__vr % 10); in __f2d()
259 __vrIsTrailingZeros &= __lastRemovedDigit == 0; in __f2d()
260 __lastRemovedDigit = static_cast<uint8_t>(__vr % 10); in __f2d()
267 if (__vrIsTrailingZeros && __lastRemovedDigit == 5 && __vr % 2 == 0) { in __f2d()
269 __lastRemovedDigit = 4; in __f2d()
272 … = __vr + ((__vr == __vm && (!__acceptBounds || !__vmIsTrailingZeros)) || __lastRemovedDigit >= 5); in __f2d()
278 __lastRemovedDigit = static_cast<uint8_t>(__vr % 10); in __f2d()
285 _Output = __vr + (__vr == __vm || __lastRemovedDigit >= 5); in __f2d()