Lines Matching refs:digitLeftCount
3267 int32_t digitLeftCount = 0, zeroDigitCount = 0, digitRightCount = 0, sigDigitCount = 0; in applyPattern() local
3303 ++digitLeftCount; in applyPattern()
3323 roundingPos = digitLeftCount + zeroDigitCount; in applyPattern()
3355 decimalPos = digitLeftCount + zeroDigitCount + digitRightCount; in applyPattern()
3392 if (((digitLeftCount + zeroDigitCount) < 1 && in applyPattern()
3394 (sigDigitCount > 0 && digitLeftCount > 0) || in applyPattern()
3572 digitLeftCount > 0 && decimalPos >= 0) { in applyPattern()
3577 digitRightCount = digitLeftCount - n; in applyPattern()
3578 digitLeftCount = n - 1; in applyPattern()
3586 decimalPos < digitLeftCount || in applyPattern()
3587 decimalPos > (digitLeftCount + zeroDigitCount))) || in applyPattern()
3644 int32_t digitTotalCount = digitLeftCount + zeroDigitCount + digitRightCount; in applyPattern()
3656 int32_t minInt = effectiveDecimalPos - digitLeftCount; in applyPattern()
3659 ? digitLeftCount + getMinimumIntegerDigits() in applyPattern()
3664 ? (digitLeftCount + zeroDigitCount - decimalPos) : 0); in applyPattern()