Java Code Examples for sun.misc.DoubleConsts#EXP_BIT_MASK
The following examples show how to use
sun.misc.DoubleConsts#EXP_BIT_MASK .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Math.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
/** * Returns the closest {@code long} to the argument, with ties * rounding to positive infinity. * * <p>Special cases: * <ul><li>If the argument is NaN, the result is 0. * <li>If the argument is negative infinity or any value less than or * equal to the value of {@code Long.MIN_VALUE}, the result is * equal to the value of {@code Long.MIN_VALUE}. * <li>If the argument is positive infinity or any value greater than or * equal to the value of {@code Long.MAX_VALUE}, the result is * equal to the value of {@code Long.MAX_VALUE}.</ul> * * @param a a floating-point value to be rounded to a * {@code long}. * @return the value of the argument rounded to the nearest * {@code long} value. * @see java.lang.Long#MAX_VALUE * @see java.lang.Long#MIN_VALUE */ public static long round(double a) { long longBits = Double.doubleToRawLongBits(a); long biasedExp = (longBits & DoubleConsts.EXP_BIT_MASK) >> (DoubleConsts.SIGNIFICAND_WIDTH - 1); long shift = (DoubleConsts.SIGNIFICAND_WIDTH - 2 + DoubleConsts.EXP_BIAS) - biasedExp; if ((shift & -64) == 0) { // shift >= 0 && shift < 64 // a is a finite number such that pow(2,-64) <= ulp(a) < 1 long r = ((longBits & DoubleConsts.SIGNIF_BIT_MASK) | (DoubleConsts.SIGNIF_BIT_MASK + 1)); if (longBits < 0) { r = -r; } // In the comments below each Java expression evaluates to the value // the corresponding mathematical expression: // (r) evaluates to a / ulp(a) // (r >> shift) evaluates to floor(a * 2) // ((r >> shift) + 1) evaluates to floor((a + 1/2) * 2) // (((r >> shift) + 1) >> 1) evaluates to floor(a + 1/2) return ((r >> shift) + 1) >> 1; } else { // a is either // - a finite number with abs(a) < exp(2,DoubleConsts.SIGNIFICAND_WIDTH-64) < 1/2 // - a finite number with ulp(a) >= 1 and hence a is a mathematical integer // - an infinity or NaN return (long) a; } }
Example 2
Source File: FpUtils.java From java-n-IDE-for-Android with Apache License 2.0 | 5 votes |
/** * Returns unbiased exponent of a <code>double</code>. */ public static int getExponent(double d){ /* * Bitwise convert d to long, mask out exponent bits, shift * to the right and then subtract out double's bias adjust to * get true exponent value. */ return (int)(((Double.doubleToRawLongBits(d) & DoubleConsts.EXP_BIT_MASK) >> (DoubleConsts.SIGNIFICAND_WIDTH - 1)) - DoubleConsts.EXP_BIAS); }
Example 3
Source File: Math.java From JDKSourceCode1.8 with MIT License | 5 votes |
/** * Returns the closest {@code long} to the argument, with ties * rounding to positive infinity. * * <p>Special cases: * <ul><li>If the argument is NaN, the result is 0. * <li>If the argument is negative infinity or any value less than or * equal to the value of {@code Long.MIN_VALUE}, the result is * equal to the value of {@code Long.MIN_VALUE}. * <li>If the argument is positive infinity or any value greater than or * equal to the value of {@code Long.MAX_VALUE}, the result is * equal to the value of {@code Long.MAX_VALUE}.</ul> * * @param a a floating-point value to be rounded to a * {@code long}. * @return the value of the argument rounded to the nearest * {@code long} value. * @see java.lang.Long#MAX_VALUE * @see java.lang.Long#MIN_VALUE */ public static long round(double a) { long longBits = Double.doubleToRawLongBits(a); long biasedExp = (longBits & DoubleConsts.EXP_BIT_MASK) >> (DoubleConsts.SIGNIFICAND_WIDTH - 1); long shift = (DoubleConsts.SIGNIFICAND_WIDTH - 2 + DoubleConsts.EXP_BIAS) - biasedExp; if ((shift & -64) == 0) { // shift >= 0 && shift < 64 // a is a finite number such that pow(2,-64) <= ulp(a) < 1 long r = ((longBits & DoubleConsts.SIGNIF_BIT_MASK) | (DoubleConsts.SIGNIF_BIT_MASK + 1)); if (longBits < 0) { r = -r; } // In the comments below each Java expression evaluates to the value // the corresponding mathematical expression: // (r) evaluates to a / ulp(a) // (r >> shift) evaluates to floor(a * 2) // ((r >> shift) + 1) evaluates to floor((a + 1/2) * 2) // (((r >> shift) + 1) >> 1) evaluates to floor(a + 1/2) return ((r >> shift) + 1) >> 1; } else { // a is either // - a finite number with abs(a) < exp(2,DoubleConsts.SIGNIFICAND_WIDTH-64) < 1/2 // - a finite number with ulp(a) >= 1 and hence a is a mathematical integer // - an infinity or NaN return (long) a; } }
Example 4
Source File: Math.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
/** * Returns the closest {@code long} to the argument, with ties * rounding to positive infinity. * * <p>Special cases: * <ul><li>If the argument is NaN, the result is 0. * <li>If the argument is negative infinity or any value less than or * equal to the value of {@code Long.MIN_VALUE}, the result is * equal to the value of {@code Long.MIN_VALUE}. * <li>If the argument is positive infinity or any value greater than or * equal to the value of {@code Long.MAX_VALUE}, the result is * equal to the value of {@code Long.MAX_VALUE}.</ul> * * @param a a floating-point value to be rounded to a * {@code long}. * @return the value of the argument rounded to the nearest * {@code long} value. * @see java.lang.Long#MAX_VALUE * @see java.lang.Long#MIN_VALUE */ public static long round(double a) { long longBits = Double.doubleToRawLongBits(a); long biasedExp = (longBits & DoubleConsts.EXP_BIT_MASK) >> (DoubleConsts.SIGNIFICAND_WIDTH - 1); long shift = (DoubleConsts.SIGNIFICAND_WIDTH - 2 + DoubleConsts.EXP_BIAS) - biasedExp; if ((shift & -64) == 0) { // shift >= 0 && shift < 64 // a is a finite number such that pow(2,-64) <= ulp(a) < 1 long r = ((longBits & DoubleConsts.SIGNIF_BIT_MASK) | (DoubleConsts.SIGNIF_BIT_MASK + 1)); if (longBits < 0) { r = -r; } // In the comments below each Java expression evaluates to the value // the corresponding mathematical expression: // (r) evaluates to a / ulp(a) // (r >> shift) evaluates to floor(a * 2) // ((r >> shift) + 1) evaluates to floor((a + 1/2) * 2) // (((r >> shift) + 1) >> 1) evaluates to floor(a + 1/2) return ((r >> shift) + 1) >> 1; } else { // a is either // - a finite number with abs(a) < exp(2,DoubleConsts.SIGNIFICAND_WIDTH-64) < 1/2 // - a finite number with ulp(a) >= 1 and hence a is a mathematical integer // - an infinity or NaN return (long) a; } }
Example 5
Source File: Math.java From AndroidComponentPlugin with Apache License 2.0 | 5 votes |
/** * Returns the closest {@code long} to the argument, with ties * rounding to positive infinity. * * <p>Special cases: * <ul><li>If the argument is NaN, the result is 0. * <li>If the argument is negative infinity or any value less than or * equal to the value of {@code Long.MIN_VALUE}, the result is * equal to the value of {@code Long.MIN_VALUE}. * <li>If the argument is positive infinity or any value greater than or * equal to the value of {@code Long.MAX_VALUE}, the result is * equal to the value of {@code Long.MAX_VALUE}.</ul> * * @param a a floating-point value to be rounded to a * {@code long}. * @return the value of the argument rounded to the nearest * {@code long} value. * @see java.lang.Long#MAX_VALUE * @see java.lang.Long#MIN_VALUE */ public static long round(double a) { long longBits = Double.doubleToRawLongBits(a); long biasedExp = (longBits & DoubleConsts.EXP_BIT_MASK) >> (DoubleConsts.SIGNIFICAND_WIDTH - 1); long shift = (DoubleConsts.SIGNIFICAND_WIDTH - 2 + DoubleConsts.EXP_BIAS) - biasedExp; if ((shift & -64) == 0) { // shift >= 0 && shift < 64 // a is a finite number such that pow(2,-64) <= ulp(a) < 1 long r = ((longBits & DoubleConsts.SIGNIF_BIT_MASK) | (DoubleConsts.SIGNIF_BIT_MASK + 1)); if (longBits < 0) { r = -r; } // In the comments below each Java expression evaluates to the value // the corresponding mathematical expression: // (r) evaluates to a / ulp(a) // (r >> shift) evaluates to floor(a * 2) // ((r >> shift) + 1) evaluates to floor((a + 1/2) * 2) // (((r >> shift) + 1) >> 1) evaluates to floor(a + 1/2) return ((r >> shift) + 1) >> 1; } else { // a is either // - a finite number with abs(a) < exp(2,DoubleConsts.SIGNIFICAND_WIDTH-64) < 1/2 // - a finite number with ulp(a) >= 1 and hence a is a mathematical integer // - an infinity or NaN return (long) a; } }
Example 6
Source File: Math.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
/** * Returns the closest {@code long} to the argument, with ties * rounding to positive infinity. * * <p>Special cases: * <ul><li>If the argument is NaN, the result is 0. * <li>If the argument is negative infinity or any value less than or * equal to the value of {@code Long.MIN_VALUE}, the result is * equal to the value of {@code Long.MIN_VALUE}. * <li>If the argument is positive infinity or any value greater than or * equal to the value of {@code Long.MAX_VALUE}, the result is * equal to the value of {@code Long.MAX_VALUE}.</ul> * * @param a a floating-point value to be rounded to a * {@code long}. * @return the value of the argument rounded to the nearest * {@code long} value. * @see java.lang.Long#MAX_VALUE * @see java.lang.Long#MIN_VALUE */ public static long round(double a) { long longBits = Double.doubleToRawLongBits(a); long biasedExp = (longBits & DoubleConsts.EXP_BIT_MASK) >> (DoubleConsts.SIGNIFICAND_WIDTH - 1); long shift = (DoubleConsts.SIGNIFICAND_WIDTH - 2 + DoubleConsts.EXP_BIAS) - biasedExp; if ((shift & -64) == 0) { // shift >= 0 && shift < 64 // a is a finite number such that pow(2,-64) <= ulp(a) < 1 long r = ((longBits & DoubleConsts.SIGNIF_BIT_MASK) | (DoubleConsts.SIGNIF_BIT_MASK + 1)); if (longBits < 0) { r = -r; } // In the comments below each Java expression evaluates to the value // the corresponding mathematical expression: // (r) evaluates to a / ulp(a) // (r >> shift) evaluates to floor(a * 2) // ((r >> shift) + 1) evaluates to floor((a + 1/2) * 2) // (((r >> shift) + 1) >> 1) evaluates to floor(a + 1/2) return ((r >> shift) + 1) >> 1; } else { // a is either // - a finite number with abs(a) < exp(2,DoubleConsts.SIGNIFICAND_WIDTH-64) < 1/2 // - a finite number with ulp(a) >= 1 and hence a is a mathematical integer // - an infinity or NaN return (long) a; } }
Example 7
Source File: Math.java From AndroidComponentPlugin with Apache License 2.0 | 3 votes |
/** * Returns the unbiased exponent used in the representation of a * {@code double}. Special cases: * * <ul> * <li>If the argument is NaN or infinite, then the result is * {@link Double#MAX_EXPONENT} + 1. * <li>If the argument is zero or subnormal, then the result is * {@link Double#MIN_EXPONENT} -1. * </ul> * @param d a {@code double} value * @return the unbiased exponent of the argument * @since 1.6 */ public static int getExponent(double d) { /* * Bitwise convert d to long, mask out exponent bits, shift * to the right and then subtract out double's bias adjust to * get true exponent value. */ return (int)(((Double.doubleToRawLongBits(d) & DoubleConsts.EXP_BIT_MASK) >> (DoubleConsts.SIGNIFICAND_WIDTH - 1)) - DoubleConsts.EXP_BIAS); }
Example 8
Source File: Math.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 3 votes |
/** * Returns the unbiased exponent used in the representation of a * {@code double}. Special cases: * * <ul> * <li>If the argument is NaN or infinite, then the result is * {@link Double#MAX_EXPONENT} + 1. * <li>If the argument is zero or subnormal, then the result is * {@link Double#MIN_EXPONENT} -1. * </ul> * @param d a {@code double} value * @return the unbiased exponent of the argument * @since 1.6 */ public static int getExponent(double d) { /* * Bitwise convert d to long, mask out exponent bits, shift * to the right and then subtract out double's bias adjust to * get true exponent value. */ return (int)(((Double.doubleToRawLongBits(d) & DoubleConsts.EXP_BIT_MASK) >> (DoubleConsts.SIGNIFICAND_WIDTH - 1)) - DoubleConsts.EXP_BIAS); }
Example 9
Source File: Double.java From Java8CN with Apache License 2.0 | 3 votes |
/** * Returns a representation of the specified floating-point value * according to the IEEE 754 floating-point "double * format" bit layout. * * <p>Bit 63 (the bit that is selected by the mask * {@code 0x8000000000000000L}) represents the sign of the * floating-point number. Bits * 62-52 (the bits that are selected by the mask * {@code 0x7ff0000000000000L}) represent the exponent. Bits 51-0 * (the bits that are selected by the mask * {@code 0x000fffffffffffffL}) represent the significand * (sometimes called the mantissa) of the floating-point number. * * <p>If the argument is positive infinity, the result is * {@code 0x7ff0000000000000L}. * * <p>If the argument is negative infinity, the result is * {@code 0xfff0000000000000L}. * * <p>If the argument is NaN, the result is * {@code 0x7ff8000000000000L}. * * <p>In all cases, the result is a {@code long} integer that, when * given to the {@link #longBitsToDouble(long)} method, will produce a * floating-point value the same as the argument to * {@code doubleToLongBits} (except all NaN values are * collapsed to a single "canonical" NaN value). * * @param value a {@code double} precision floating-point number. * @return the bits that represent the floating-point number. */ public static long doubleToLongBits(double value) { long result = doubleToRawLongBits(value); // Check for NaN based on values of bit fields, maximum // exponent and nonzero significand. if ( ((result & DoubleConsts.EXP_BIT_MASK) == DoubleConsts.EXP_BIT_MASK) && (result & DoubleConsts.SIGNIF_BIT_MASK) != 0L) result = 0x7ff8000000000000L; return result; }
Example 10
Source File: Math.java From dragonwell8_jdk with GNU General Public License v2.0 | 3 votes |
/** * Returns the unbiased exponent used in the representation of a * {@code double}. Special cases: * * <ul> * <li>If the argument is NaN or infinite, then the result is * {@link Double#MAX_EXPONENT} + 1. * <li>If the argument is zero or subnormal, then the result is * {@link Double#MIN_EXPONENT} -1. * </ul> * @param d a {@code double} value * @return the unbiased exponent of the argument * @since 1.6 */ public static int getExponent(double d) { /* * Bitwise convert d to long, mask out exponent bits, shift * to the right and then subtract out double's bias adjust to * get true exponent value. */ return (int)(((Double.doubleToRawLongBits(d) & DoubleConsts.EXP_BIT_MASK) >> (DoubleConsts.SIGNIFICAND_WIDTH - 1)) - DoubleConsts.EXP_BIAS); }
Example 11
Source File: Math.java From j2objc with Apache License 2.0 | 3 votes |
/** * Returns the unbiased exponent used in the representation of a * {@code double}. Special cases: * * <ul> * <li>If the argument is NaN or infinite, then the result is * {@link Double#MAX_EXPONENT} + 1. * <li>If the argument is zero or subnormal, then the result is * {@link Double#MIN_EXPONENT} -1. * </ul> * @param d a {@code double} value * @return the unbiased exponent of the argument * @since 1.6 */ public static int getExponent(double d) { /* * Bitwise convert d to long, mask out exponent bits, shift * to the right and then subtract out double's bias adjust to * get true exponent value. */ return (int)(((Double.doubleToRawLongBits(d) & DoubleConsts.EXP_BIT_MASK) >> (DoubleConsts.SIGNIFICAND_WIDTH - 1)) - DoubleConsts.EXP_BIAS); }
Example 12
Source File: Math.java From openjdk-8-source with GNU General Public License v2.0 | 3 votes |
/** * Returns the unbiased exponent used in the representation of a * {@code double}. Special cases: * * <ul> * <li>If the argument is NaN or infinite, then the result is * {@link Double#MAX_EXPONENT} + 1. * <li>If the argument is zero or subnormal, then the result is * {@link Double#MIN_EXPONENT} -1. * </ul> * @param d a {@code double} value * @return the unbiased exponent of the argument * @since 1.6 */ public static int getExponent(double d) { /* * Bitwise convert d to long, mask out exponent bits, shift * to the right and then subtract out double's bias adjust to * get true exponent value. */ return (int)(((Double.doubleToRawLongBits(d) & DoubleConsts.EXP_BIT_MASK) >> (DoubleConsts.SIGNIFICAND_WIDTH - 1)) - DoubleConsts.EXP_BIAS); }
Example 13
Source File: Double.java From hottub with GNU General Public License v2.0 | 3 votes |
/** * Returns a representation of the specified floating-point value * according to the IEEE 754 floating-point "double * format" bit layout. * * <p>Bit 63 (the bit that is selected by the mask * {@code 0x8000000000000000L}) represents the sign of the * floating-point number. Bits * 62-52 (the bits that are selected by the mask * {@code 0x7ff0000000000000L}) represent the exponent. Bits 51-0 * (the bits that are selected by the mask * {@code 0x000fffffffffffffL}) represent the significand * (sometimes called the mantissa) of the floating-point number. * * <p>If the argument is positive infinity, the result is * {@code 0x7ff0000000000000L}. * * <p>If the argument is negative infinity, the result is * {@code 0xfff0000000000000L}. * * <p>If the argument is NaN, the result is * {@code 0x7ff8000000000000L}. * * <p>In all cases, the result is a {@code long} integer that, when * given to the {@link #longBitsToDouble(long)} method, will produce a * floating-point value the same as the argument to * {@code doubleToLongBits} (except all NaN values are * collapsed to a single "canonical" NaN value). * * @param value a {@code double} precision floating-point number. * @return the bits that represent the floating-point number. */ public static long doubleToLongBits(double value) { long result = doubleToRawLongBits(value); // Check for NaN based on values of bit fields, maximum // exponent and nonzero significand. if ( ((result & DoubleConsts.EXP_BIT_MASK) == DoubleConsts.EXP_BIT_MASK) && (result & DoubleConsts.SIGNIF_BIT_MASK) != 0L) result = 0x7ff8000000000000L; return result; }
Example 14
Source File: Math.java From jdk8u_jdk with GNU General Public License v2.0 | 3 votes |
/** * Returns the unbiased exponent used in the representation of a * {@code double}. Special cases: * * <ul> * <li>If the argument is NaN or infinite, then the result is * {@link Double#MAX_EXPONENT} + 1. * <li>If the argument is zero or subnormal, then the result is * {@link Double#MIN_EXPONENT} -1. * </ul> * @param d a {@code double} value * @return the unbiased exponent of the argument * @since 1.6 */ public static int getExponent(double d) { /* * Bitwise convert d to long, mask out exponent bits, shift * to the right and then subtract out double's bias adjust to * get true exponent value. */ return (int)(((Double.doubleToRawLongBits(d) & DoubleConsts.EXP_BIT_MASK) >> (DoubleConsts.SIGNIFICAND_WIDTH - 1)) - DoubleConsts.EXP_BIAS); }
Example 15
Source File: Double.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 3 votes |
/** * Returns a representation of the specified floating-point value * according to the IEEE 754 floating-point "double * format" bit layout. * * <p>Bit 63 (the bit that is selected by the mask * {@code 0x8000000000000000L}) represents the sign of the * floating-point number. Bits * 62-52 (the bits that are selected by the mask * {@code 0x7ff0000000000000L}) represent the exponent. Bits 51-0 * (the bits that are selected by the mask * {@code 0x000fffffffffffffL}) represent the significand * (sometimes called the mantissa) of the floating-point number. * * <p>If the argument is positive infinity, the result is * {@code 0x7ff0000000000000L}. * * <p>If the argument is negative infinity, the result is * {@code 0xfff0000000000000L}. * * <p>If the argument is NaN, the result is * {@code 0x7ff8000000000000L}. * * <p>In all cases, the result is a {@code long} integer that, when * given to the {@link #longBitsToDouble(long)} method, will produce a * floating-point value the same as the argument to * {@code doubleToLongBits} (except all NaN values are * collapsed to a single "canonical" NaN value). * * @param value a {@code double} precision floating-point number. * @return the bits that represent the floating-point number. */ public static long doubleToLongBits(double value) { long result = doubleToRawLongBits(value); // Check for NaN based on values of bit fields, maximum // exponent and nonzero significand. if ( ((result & DoubleConsts.EXP_BIT_MASK) == DoubleConsts.EXP_BIT_MASK) && (result & DoubleConsts.SIGNIF_BIT_MASK) != 0L) result = 0x7ff8000000000000L; return result; }
Example 16
Source File: Math.java From openjdk-jdk8u with GNU General Public License v2.0 | 3 votes |
/** * Returns the unbiased exponent used in the representation of a * {@code double}. Special cases: * * <ul> * <li>If the argument is NaN or infinite, then the result is * {@link Double#MAX_EXPONENT} + 1. * <li>If the argument is zero or subnormal, then the result is * {@link Double#MIN_EXPONENT} -1. * </ul> * @param d a {@code double} value * @return the unbiased exponent of the argument * @since 1.6 */ public static int getExponent(double d) { /* * Bitwise convert d to long, mask out exponent bits, shift * to the right and then subtract out double's bias adjust to * get true exponent value. */ return (int)(((Double.doubleToRawLongBits(d) & DoubleConsts.EXP_BIT_MASK) >> (DoubleConsts.SIGNIFICAND_WIDTH - 1)) - DoubleConsts.EXP_BIAS); }
Example 17
Source File: Double.java From jdk8u-jdk with GNU General Public License v2.0 | 3 votes |
/** * Returns a representation of the specified floating-point value * according to the IEEE 754 floating-point "double * format" bit layout. * * <p>Bit 63 (the bit that is selected by the mask * {@code 0x8000000000000000L}) represents the sign of the * floating-point number. Bits * 62-52 (the bits that are selected by the mask * {@code 0x7ff0000000000000L}) represent the exponent. Bits 51-0 * (the bits that are selected by the mask * {@code 0x000fffffffffffffL}) represent the significand * (sometimes called the mantissa) of the floating-point number. * * <p>If the argument is positive infinity, the result is * {@code 0x7ff0000000000000L}. * * <p>If the argument is negative infinity, the result is * {@code 0xfff0000000000000L}. * * <p>If the argument is NaN, the result is * {@code 0x7ff8000000000000L}. * * <p>In all cases, the result is a {@code long} integer that, when * given to the {@link #longBitsToDouble(long)} method, will produce a * floating-point value the same as the argument to * {@code doubleToLongBits} (except all NaN values are * collapsed to a single "canonical" NaN value). * * @param value a {@code double} precision floating-point number. * @return the bits that represent the floating-point number. */ public static long doubleToLongBits(double value) { long result = doubleToRawLongBits(value); // Check for NaN based on values of bit fields, maximum // exponent and nonzero significand. if ( ((result & DoubleConsts.EXP_BIT_MASK) == DoubleConsts.EXP_BIT_MASK) && (result & DoubleConsts.SIGNIF_BIT_MASK) != 0L) result = 0x7ff8000000000000L; return result; }
Example 18
Source File: Math.java From Java8CN with Apache License 2.0 | 3 votes |
/** * Returns the unbiased exponent used in the representation of a * {@code double}. Special cases: * * <ul> * <li>If the argument is NaN or infinite, then the result is * {@link Double#MAX_EXPONENT} + 1. * <li>If the argument is zero or subnormal, then the result is * {@link Double#MIN_EXPONENT} -1. * </ul> * @param d a {@code double} value * @return the unbiased exponent of the argument * @since 1.6 */ public static int getExponent(double d) { /* * Bitwise convert d to long, mask out exponent bits, shift * to the right and then subtract out double's bias adjust to * get true exponent value. */ return (int)(((Double.doubleToRawLongBits(d) & DoubleConsts.EXP_BIT_MASK) >> (DoubleConsts.SIGNIFICAND_WIDTH - 1)) - DoubleConsts.EXP_BIAS); }
Example 19
Source File: Math.java From JDKSourceCode1.8 with MIT License | 3 votes |
/** * Returns the unbiased exponent used in the representation of a * {@code double}. Special cases: * * <ul> * <li>If the argument is NaN or infinite, then the result is * {@link Double#MAX_EXPONENT} + 1. * <li>If the argument is zero or subnormal, then the result is * {@link Double#MIN_EXPONENT} -1. * </ul> * @param d a {@code double} value * @return the unbiased exponent of the argument * @since 1.6 */ public static int getExponent(double d) { /* * Bitwise convert d to long, mask out exponent bits, shift * to the right and then subtract out double's bias adjust to * get true exponent value. */ return (int)(((Double.doubleToRawLongBits(d) & DoubleConsts.EXP_BIT_MASK) >> (DoubleConsts.SIGNIFICAND_WIDTH - 1)) - DoubleConsts.EXP_BIAS); }
Example 20
Source File: Math.java From jdk8u-jdk with GNU General Public License v2.0 | 3 votes |
/** * Returns the unbiased exponent used in the representation of a * {@code double}. Special cases: * * <ul> * <li>If the argument is NaN or infinite, then the result is * {@link Double#MAX_EXPONENT} + 1. * <li>If the argument is zero or subnormal, then the result is * {@link Double#MIN_EXPONENT} -1. * </ul> * @param d a {@code double} value * @return the unbiased exponent of the argument * @since 1.6 */ public static int getExponent(double d) { /* * Bitwise convert d to long, mask out exponent bits, shift * to the right and then subtract out double's bias adjust to * get true exponent value. */ return (int)(((Double.doubleToRawLongBits(d) & DoubleConsts.EXP_BIT_MASK) >> (DoubleConsts.SIGNIFICAND_WIDTH - 1)) - DoubleConsts.EXP_BIAS); }