Searched refs:SimpleBigDecimal (Results 1 - 2 of 2) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DSimpleBigDecimal.java7 * <code>SimpleBigDecimal</code> is basically a
10 * point is called the <code>scale</code> of the <code>SimpleBigDecimal</code>.
12 * automatically, but must be set manually. All <code>SimpleBigDecimal</code>s
14 * result of a multiplication of two <code>SimpleBigDecimal</code>s returns a
15 * <code>SimpleBigDecimal</code> with double scale.
17 class SimpleBigDecimal class
26 * Returns a <code>SimpleBigDecimal</code> representing the same numerical
28 * @param value The value of the <code>SimpleBigDecimal</code> to be
30 * @param scale The scale of the <code>SimpleBigDecimal</code> to be
32 * @return The such created <code>SimpleBigDecimal</cod
46 public SimpleBigDecimal(BigInteger bigInt, int scale) method in class:SimpleBigDecimal
57 private SimpleBigDecimal(SimpleBigDecimal limBigDec) method in class:SimpleBigDecimal
[all...]
H A DTnaf.java123 public static SimpleBigDecimal norm(final byte mu, SimpleBigDecimal u,
124 SimpleBigDecimal v)
126 SimpleBigDecimal norm;
129 SimpleBigDecimal s1 = u.multiply(u);
132 SimpleBigDecimal s2 = u.multiply(v);
135 SimpleBigDecimal s3 = v.multiply(v).shiftLeft(1);
166 public static ZTauElement round(SimpleBigDecimal lambda0,
167 SimpleBigDecimal lambda1, byte mu)
184 SimpleBigDecimal eta
[all...]

Completed in 102 milliseconds