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