Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/math/
DBigInteger.java714 int magLen = (bitLength + 31) >>> 5; in smallPrime() local
715 int temp[] = new int[magLen]; in smallPrime()
721 for (int i=0; i < magLen; i++) in smallPrime()
725 temp[magLen-1] |= 1; // Make odd if bitlen > 2 in smallPrime()
3311 int magLen = mag.length;
3315 newMag = new int[magLen + nInts];
3316 System.arraycopy(mag, 0, newMag, 0, magLen);
3322 newMag = new int[magLen + nInts + 1];
3325 newMag = new int[magLen + nInts];
3328 while (j < magLen-1)
[all …]