Searched defs:getExponent (Results 1 - 7 of 7) 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/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/src/share/classes/java/lang/
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 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);
/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');

Completed in 95 milliseconds