Home
last modified time | relevance | path

Searched refs:firstGroupLen (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/math/
DBigInteger.java470 int firstGroupLen = numDigits % digitsPerInt[radix]; in BigInteger() local
471 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() local
529 if (firstGroupLen == 0) in BigInteger()
530 firstGroupLen = digitsPerInt[10]; in BigInteger()
531 magnitude[numWords - 1] = parseInt(val, cursor, cursor += firstGroupLen); in BigInteger()