Searched refs:firstGroupLen (Results 1 – 1 of 1) sorted by relevance
533 int firstGroupLen = numDigits % digitsPerInt[radix]; in BigInteger() local534 if (firstGroupLen == 0) in BigInteger()535 firstGroupLen = digitsPerInt[radix]; in BigInteger()536 String group = val.substring(cursor, cursor += firstGroupLen); in BigInteger()593 int firstGroupLen = numDigits % digitsPerInt[10]; in BigInteger() local594 if (firstGroupLen == 0) in BigInteger()595 firstGroupLen = digitsPerInt[10]; in BigInteger()596 magnitude[numWords - 1] = parseInt(val, cursor, cursor += firstGroupLen); in BigInteger()