Searched refs:numWords (Results 1 – 2 of 2) sorted by relevance
466 int numWords = (int) (numBits + 31) >>> 5; in BigInteger() local467 int[] magnitude = new int[numWords]; in BigInteger()474 magnitude[numWords - 1] = Integer.parseInt(group, radix); in BigInteger()475 if (magnitude[numWords - 1] < 0) in BigInteger()515 int numWords; in BigInteger() local517 numWords = 1; in BigInteger()523 numWords = (int) (numBits + 31) >>> 5; in BigInteger()525 int[] magnitude = new int[numWords]; in BigInteger()531 magnitude[numWords - 1] = parseInt(val, cursor, cursor += firstGroupLen); in BigInteger()
2173 for (int i=0, numWords = k >> 5; i < numWords; i++) {