Searched defs:MutableBigInteger (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/math/
H A DMutableBigInteger.java49 class MutableBigInteger { class
51 * Holds the magnitude of this MutableBigInteger in big endian order.
59 * to hold the magnitude of this MutableBigInteger. The magnitude starts
66 * MutableBigInteger begins.
72 * MutableBigInteger with one element value array with the value 1. Used by
76 static final MutableBigInteger ONE = new MutableBigInteger(1);
81 * The default constructor. An empty MutableBigInteger is created with
84 MutableBigInteger() { method in class:MutableBigInteger
90 * Construct a new MutableBigInteger wit
93 MutableBigInteger(int val) { method in class:MutableBigInteger
103 MutableBigInteger(int[] val) { method in class:MutableBigInteger
112 MutableBigInteger(BigInteger b) { method in class:MutableBigInteger
121 MutableBigInteger(MutableBigInteger val) { method in class:MutableBigInteger
[all...]

Completed in 225 milliseconds