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.java466 int numWords = (int) (numBits + 31) >>> 5; in BigInteger() local
467 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() local
517 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()
DMutableBigInteger.java2173 for (int i=0, numWords = k >> 5; i < numWords; i++) {