Searched refs:MutableBigInteger (Results 1 – 7 of 7) sorted by relevance
/libcore/ojluni/src/main/java/java/math/ |
D | MutableBigInteger.java | 49 class MutableBigInteger { class 76 static final MutableBigInteger ONE = new MutableBigInteger(1); 102 MutableBigInteger() { in MutableBigInteger() method in MutableBigInteger 111 MutableBigInteger(int val) { in MutableBigInteger() method in MutableBigInteger 121 MutableBigInteger(int[] val) { in MutableBigInteger() method in MutableBigInteger 130 MutableBigInteger(BigInteger b) { in MutableBigInteger() method in MutableBigInteger 139 MutableBigInteger(MutableBigInteger val) { in MutableBigInteger() method in MutableBigInteger 264 final int compare(MutableBigInteger b) { in compare() 289 private int compareShifted(MutableBigInteger b, int ints) { in compareShifted() 317 final int compareHalf(MutableBigInteger b) { in compareHalf() [all …]
|
D | SignedMutableBigInteger.java | 47 class SignedMutableBigInteger extends MutableBigInteger { 76 SignedMutableBigInteger(MutableBigInteger val) { in SignedMutableBigInteger() 96 void signedAdd(MutableBigInteger addend) { in signedAdd() 118 void signedSubtract(MutableBigInteger addend) { in signedSubtract()
|
D | BitSieve.java | 113 MutableBigInteger b = new MutableBigInteger(base); in BitSieve() 114 MutableBigInteger q = new MutableBigInteger(); in BitSieve()
|
D | BigInteger.java | 2381 MutableBigInteger q = new MutableBigInteger(), in divideKnuth() 2382 a = new MutableBigInteger(this.mag), in divideKnuth() 2383 b = new MutableBigInteger(val.mag); in divideKnuth() 2440 MutableBigInteger q = new MutableBigInteger(), in divideAndRemainderKnuth() 2441 a = new MutableBigInteger(this.mag), in divideAndRemainderKnuth() 2442 b = new MutableBigInteger(val.mag); in divideAndRemainderKnuth() 2443 MutableBigInteger r = a.divideKnuth(b, q); in divideAndRemainderKnuth() 2477 MutableBigInteger q = new MutableBigInteger(), in remainderKnuth() 2478 a = new MutableBigInteger(this.mag), in remainderKnuth() 2479 b = new MutableBigInteger(val.mag); in remainderKnuth() [all …]
|
D | BigDecimal.java | 4796 MutableBigInteger mdividend = new MutableBigInteger(bdividend.mag); 4798 MutableBigInteger mq = new MutableBigInteger(); 4807 mq.add(MutableBigInteger.ONE); 4825 MutableBigInteger mdividend = new MutableBigInteger(bdividend.mag); 4827 MutableBigInteger mq = new MutableBigInteger(); 4836 mq.add(MutableBigInteger.ONE); 4857 int qsign, MutableBigInteger mq, long r) { 4878 MutableBigInteger mdividend = new MutableBigInteger(bdividend.mag); 4879 MutableBigInteger mq = new MutableBigInteger(); 4880 MutableBigInteger mdivisor = new MutableBigInteger(bdivisor.mag); [all …]
|
/libcore/ |
D | openjdk_java_files.bp | 281 "ojluni/src/main/java/java/math/MutableBigInteger.java",
|
D | EXPECTED_UPSTREAM | 315 …ni/src/main/java/java/math/MutableBigInteger.java,jdk17u/jdk-17.0.6-ga,src/java.base/share/classes…
|