Searched defs:BigInteger (Results 1 - 1 of 1) sorted by relevance
/libcore/luni/src/main/java/java/math/ |
H A D | BigInteger.java | 19 // Since the original Harmony Code of the BigInteger class was strongly modified, 47 public class BigInteger extends Number class in inherits:Number,Comparable,Serializable 48 implements Comparable<BigInteger>, Serializable { 71 /** The {@code BigInteger} constant 0. */ 72 public static final BigInteger ZERO = new BigInteger(0, 0); 74 /** The {@code BigInteger} constant 1. */ 75 public static final BigInteger ONE = new BigInteger(1, 1); 77 /** The {@code BigInteger} constan 100 BigInteger(BigInt bigInt) { method in class:BigInteger 107 BigInteger(int sign, long value) { method in class:BigInteger 121 BigInteger(int sign, int numberLength, int[] digits) { method in class:BigInteger 133 public BigInteger(int numBits, Random random) { method in class:BigInteger 169 public BigInteger(int bitLength, int certainty, Random unused) { method in class:BigInteger 187 public BigInteger(String value) { method in class:BigInteger 206 public BigInteger(String value, int radix) { method in class:BigInteger 241 public BigInteger(int signum, byte[] magnitude) { method in class:BigInteger 271 public BigInteger(byte[] value) { method in class:BigInteger [all...] |
Completed in 9535 milliseconds