Searched refs:wordcount (Results 1 – 1 of 1) sorted by relevance
/libcore/ojluni/src/main/java/sun/misc/ |
D | FDBigInteger.java | 256 int wordcount = p2 >> 5; in valueOfPow52() local 259 return new FDBigInteger(new int[]{pow5}, wordcount); in valueOfPow52() 264 }, wordcount); in valueOfPow52() 293 int wordcount = p2 >> 5; in valueOfMulPow52() local 305 return new FDBigInteger(new int[]{v0, v1, v2}, wordcount); in valueOfMulPow52() 312 }, wordcount); in valueOfMulPow52() 328 return new FDBigInteger(new int[]{v0, v1}, wordcount); in valueOfMulPow52() 334 }, wordcount); in valueOfMulPow52() 353 int wordcount = p2 >> 5; in valueOfPow2() local 355 return new FDBigInteger(new int[]{1 << bitcount}, wordcount); in valueOfPow2() [all …]
|