Searched refs:firstGroupLen (Results 1 – 1 of 1) sorted by relevance
470 int firstGroupLen = numDigits % digitsPerInt[radix]; in BigInteger() local471 if (firstGroupLen == 0) in BigInteger()472 firstGroupLen = digitsPerInt[radix]; in BigInteger()473 String group = val.substring(cursor, cursor += firstGroupLen); in BigInteger()528 int firstGroupLen = numDigits % digitsPerInt[10]; in BigInteger() local529 if (firstGroupLen == 0) in BigInteger()530 firstGroupLen = digitsPerInt[10]; in BigInteger()531 magnitude[numWords - 1] = parseInt(val, cursor, cursor += firstGroupLen); in BigInteger()