Searched refs:numWords (Results 1 – 2 of 2) sorted by relevance
529 int numWords = (int) (numBits + 31) >>> 5; in BigInteger() local530 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() local582 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()
2268 for (int i=0, numWords = k >> 5; i < numWords; i++) {