Searched refs:tempLen (Results 1 – 1 of 1) sorted by relevance
85 int tempLen = numberLength; in bigInteger2String() local93 resDigit = Division.divideArrayByInt(temp, temp, tempLen, in bigInteger2String()104 for (i = tempLen - 1; (i > 0) && (temp[i] == 0); i--) { in bigInteger2String()107 tempLen = i + 1; in bigInteger2String()108 if ((tempLen == 1) && (temp[0] == 0)) { // the quotient is 0 in bigInteger2String()203 int tempLen = numberLength; in toDecimalScaledString() local204 System.arraycopy(digits, 0, temp, 0, tempLen); in toDecimalScaledString()210 for (int i1 = tempLen - 1; i1 >= 0; i1--) { in toDecimalScaledString()226 int j = tempLen - 1; in toDecimalScaledString()232 tempLen = j + 1; in toDecimalScaledString()