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

/libcore/ojluni/src/main/java/sun/misc/
H A DFormattedFloatingDecimal.java43 private char[] exponent; field in class:FormattedFloatingDecimal
60 this.exponent = null;
87 // the real exponent to be output is actually exp - 1, not exp
104 // returns the exponent after rounding has been done by applyPrecision
114 return exponent;
161 * Fills mantissa and exponent char arrays for compatible format.
232 exponent = create(isNegExp,1);
233 exponent[expStartIntex] = (char) (e + '0');
235 exponent = create(isNegExp,2);
236 exponent[expStartInte
[all...]
/libcore/luni/src/main/java/java/math/
H A DBigInteger.java977 * pow(this, exponent) mod modulus}. The modulus must be positive. The
979 * If the exponent is negative, then
980 * {@code pow(this.modInverse(modulus), -exponent) mod modulus} is computed.
984 * @throws NullPointerException if {@code modulus == null} or {@code exponent == null}.
985 * @throws ArithmeticException if {@code modulus < 0} or if {@code exponent < 0} and
988 public BigInteger modPow(BigInteger exponent, BigInteger modulus) { argument
992 int exponentSignum = exponent.signum();
997 return new BigInteger(BigInt.modExp(base.getBigInt(), exponent.getBigInt(), modulus.getBigInt()));
/libcore/ojluni/src/main/java/java/util/
H A DFormatter.java347 * a significand and an exponent. This conversion is <b>not</b> supported
846 * exponent (as appropriate for the data type), the following transformation
1165 * <p> If <i>m</i> is positive-zero or negative-zero, then the exponent
1181 * java.text.DecimalFormatSymbols#getExponentSeparator exponent separator}
1182 * (e.g. {@code 'e'}), followed by the sign of the exponent, followed
1204 * <td> The upper-case variant of {@code 'e'}. The exponent symbol
1206 * java.text.DecimalFormatSymbols#getExponentSeparator exponent separator}
1297 * exponent fields. The significand is represented by the characters
1299 * of the significand as a fraction. The exponent is represented by
1301 * unbiased exponent a
3813 public char[] exponent() { method in class:Formatter.FormatSpecifier.BigDecimalLayout
[all...]

Completed in 50 milliseconds