Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/math/
DBigInteger.java529 int numWords = (int) (numBits + 31) >>> 5; in BigInteger() local
530 int[] magnitude = new int[numWords]; in BigInteger()
537 magnitude[numWords - 1] = Integer.parseInt(group, radix); in BigInteger()
538 if (magnitude[numWords - 1] < 0) in BigInteger()
580 int numWords; in BigInteger() local
582 numWords = 1; in BigInteger()
588 numWords = (int) (numBits + 31) >>> 5; in BigInteger()
590 int[] magnitude = new int[numWords]; in BigInteger()
596 magnitude[numWords - 1] = parseInt(val, cursor, cursor += firstGroupLen); in BigInteger()
DMutableBigInteger.java2268 for (int i=0, numWords = k >> 5; i < numWords; i++) {