Searched refs:getExponent (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/classes/java/security/spec/
H A DRSAOtherPrimeInfo.java108 public final BigInteger getExponent() { method in class:RSAOtherPrimeInfo
/openjdk7/jdk/src/windows/classes/sun/security/mscapi/
H A DRSAPublicKey.java97 exponent = new BigInteger(1, getExponent(publicKeyBlob));
185 private native byte[] getExponent(byte[] keyBlob) throws KeyException; method in class:RSAPublicKey
/openjdk7/jdk/src/share/classes/java/lang/
H A DStrictMath.java355 int exponent = Math.getExponent(a);
1236 public static int getExponent(float f) { method in class:StrictMath
1237 return sun.misc.FpUtils.getExponent(f);
1253 public static int getExponent(double d) { method in class:StrictMath
1254 return sun.misc.FpUtils.getExponent(d);
H A DMath.java1291 public static int getExponent(float f) { method in class:Math
1292 return sun.misc.FpUtils.getExponent(f);
1309 public static int getExponent(double d) { method in class:Math
1310 return sun.misc.FpUtils.getExponent(d);
H A DDouble.java103 * {@code Math.getExponent(Double.MAX_VALUE)}.
112 * {@code Math.getExponent(Double.MIN_NORMAL)}.
325 FpUtils.getExponent(d) ));
/openjdk7/jdk/src/share/classes/sun/misc/
H A DFpUtils.java141 public static int getExponent(double d){ method in class:FpUtils
154 public static int getExponent(float f){ method in class:FpUtils
373 int exponent = getExponent(d);
443 int exponent = getExponent(f);
1095 int exp = getExponent(d);
1146 int exp = getExponent(f);
H A DFormattedFloatingDecimal.java981 public int getExponent() { method in class:FormattedFloatingDecimal
/openjdk7/jdk/test/java/lang/Math/
H A DIeeeRecommendedTests.java72 /* ******************** getExponent tests ****************************** */
75 * The tests for getExponent should test the special values (NaN, +/-
86 * Test Math.getExponent and StrictMath.getExponent with +d and -d.
92 failures+=Tests.test("Math.getExponent(float)", f,
93 Math.getExponent(f), expected);
94 failures+=Tests.test("Math.getExponent(float)", minus_f,
95 Math.getExponent(minus_f), expected);
97 failures+=Tests.test("StrictMath.getExponent(float)", f,
98 StrictMath.getExponent(
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DScanner.java957 return getExponent (string + 'E');
965 private Token getExponent (String string) throws IOException method in class:Scanner
981 } // getExponent
1001 return getExponent ("0E");
1124 return getExponent (string + 'E');
/openjdk7/jdk/src/share/classes/java/util/
H A DFormatter.java3258 + Math.abs(fd.getExponent())];
3285 + Math.abs(fd.getExponent())];
3426 int exponent = FpUtils.getExponent(d);
3437 exponent = FpUtils.getExponent(d);

Completed in 65 milliseconds