Java Code Examples for sun.misc.DoubleConsts#EXP_BIAS
The following examples show how to use
sun.misc.DoubleConsts#EXP_BIAS .
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 jdk1.8-source-analysis 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 2
Source File: Math.java From openjdk-8-source 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 3
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 4
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 5
Source File: Math.java From openjdk-jdk8u 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 6
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 7
Source File: Math.java From hottub 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 8
Source File: Math.java From Java8CN 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 9
Source File: Math.java From jdk8u-dev-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 10
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 11
Source File: FpUtils.java From javaide with GNU General Public License v3.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 12
Source File: BigInteger.java From jdk8u-jdk with GNU General Public License v2.0 | 4 votes |
/** * Converts this BigInteger to a {@code double}. This * conversion is similar to the * <i>narrowing primitive conversion</i> from {@code double} to * {@code float} as defined in section 5.1.3 of * <cite>The Java™ Language Specification</cite>: * if this BigInteger has too great a magnitude * to represent as a {@code double}, it will be converted to * {@link Double#NEGATIVE_INFINITY} or {@link * Double#POSITIVE_INFINITY} as appropriate. Note that even when * the return value is finite, this conversion can lose * information about the precision of the BigInteger value. * * @return this BigInteger converted to a {@code double}. */ public double doubleValue() { if (signum == 0) { return 0.0; } int exponent = ((mag.length - 1) << 5) + bitLengthForInt(mag[0]) - 1; // exponent == floor(log2(abs(this))Double) if (exponent < Long.SIZE - 1) { return longValue(); } else if (exponent > Double.MAX_EXPONENT) { return signum > 0 ? Double.POSITIVE_INFINITY : Double.NEGATIVE_INFINITY; } /* * We need the top SIGNIFICAND_WIDTH bits, including the "implicit" * one bit. To make rounding easier, we pick out the top * SIGNIFICAND_WIDTH + 1 bits, so we have one to help us round up or * down. twiceSignifFloor will contain the top SIGNIFICAND_WIDTH + 1 * bits, and signifFloor the top SIGNIFICAND_WIDTH. * * It helps to consider the real number signif = abs(this) * * 2^(SIGNIFICAND_WIDTH - 1 - exponent). */ int shift = exponent - DoubleConsts.SIGNIFICAND_WIDTH; long twiceSignifFloor; // twiceSignifFloor will be == abs().shiftRight(shift).longValue() // We do the shift into a long directly to improve performance. int nBits = shift & 0x1f; int nBits2 = 32 - nBits; int highBits; int lowBits; if (nBits == 0) { highBits = mag[0]; lowBits = mag[1]; } else { highBits = mag[0] >>> nBits; lowBits = (mag[0] << nBits2) | (mag[1] >>> nBits); if (highBits == 0) { highBits = lowBits; lowBits = (mag[1] << nBits2) | (mag[2] >>> nBits); } } twiceSignifFloor = ((highBits & LONG_MASK) << 32) | (lowBits & LONG_MASK); long signifFloor = twiceSignifFloor >> 1; signifFloor &= DoubleConsts.SIGNIF_BIT_MASK; // remove the implied bit /* * We round up if either the fractional part of signif is strictly * greater than 0.5 (which is true if the 0.5 bit is set and any lower * bit is set), or if the fractional part of signif is >= 0.5 and * signifFloor is odd (which is true if both the 0.5 bit and the 1 bit * are set). This is equivalent to the desired HALF_EVEN rounding. */ boolean increment = (twiceSignifFloor & 1) != 0 && ((signifFloor & 1) != 0 || abs().getLowestSetBit() < shift); long signifRounded = increment ? signifFloor + 1 : signifFloor; long bits = (long) ((exponent + DoubleConsts.EXP_BIAS)) << (DoubleConsts.SIGNIFICAND_WIDTH - 1); bits += signifRounded; /* * If signifRounded == 2^53, we'd need to set all of the significand * bits to zero and add 1 to the exponent. This is exactly the behavior * we get from just adding signifRounded to bits directly. If the * exponent is Double.MAX_EXPONENT, we round up (correctly) to * Double.POSITIVE_INFINITY. */ bits |= signum & DoubleConsts.SIGN_BIT_MASK; return Double.longBitsToDouble(bits); }
Example 13
Source File: ToHexString.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 4 votes |
static String hexLongStringtoHexDoubleString(String transString) { transString = transString.toLowerCase(); String zeros = ""; StringBuffer result = new StringBuffer(24); for(int i = 0; i < (16 - transString.length()); i++, zeros += "0"); transString = zeros + transString; // assert transString.length == 16; char topChar; // Extract sign if((topChar=transString.charAt(0)) >= '8' ) {// 8, 9, a, A, b, B, ... result.append("-"); // clear sign bit transString = Character.toString(Character.forDigit(Character.digit(topChar, 16) - 8, 16)) + transString.substring(1,16); } // check for NaN and infinity String signifString = transString.substring(3,16); if( transString.substring(0,3).equals("7ff") ) { if(signifString.equals("0000000000000")) { result.append("Infinity"); } else result.append("NaN"); } else { // finite value // Extract exponent int exponent = Integer.parseInt(transString.substring(0,3), 16) - DoubleConsts.EXP_BIAS; result.append("0x"); if (exponent == DoubleConsts.MIN_EXPONENT - 1) { // zero or subnormal if(signifString.equals("0000000000000")) { result.append("0.0p0"); } else { result.append("0." + signifString.replaceFirst("0+$", "").replaceFirst("^$", "0") + "p-1022"); } } else { // normal value result.append("1." + signifString.replaceFirst("0+$", "").replaceFirst("^$", "0") + "p" + exponent); } } return result.toString(); }
Example 14
Source File: ToHexString.java From native-obfuscator with GNU General Public License v3.0 | 4 votes |
static String hexLongStringtoHexDoubleString(String transString) { transString = transString.toLowerCase(); String zeros = ""; StringBuffer result = new StringBuffer(24); for(int i = 0; i < (16 - transString.length()); i++, zeros += "0"); transString = zeros + transString; // assert transString.length == 16; char topChar; // Extract sign if((topChar=transString.charAt(0)) >= '8' ) {// 8, 9, a, A, b, B, ... result.append("-"); // clear sign bit transString = Character.toString(Character.forDigit(Character.digit(topChar, 16) - 8, 16)) + transString.substring(1,16); } // check for NaN and infinity String signifString = transString.substring(3,16); if( transString.substring(0,3).equals("7ff") ) { if(signifString.equals("0000000000000")) { result.append("Infinity"); } else result.append("NaN"); } else { // finite value // Extract exponent int exponent = Integer.parseInt(transString.substring(0,3), 16) - DoubleConsts.EXP_BIAS; result.append("0x"); if (exponent == DoubleConsts.MIN_EXPONENT - 1) { // zero or subnormal if(signifString.equals("0000000000000")) { result.append("0.0p0"); } else { result.append("0." + signifString.replaceFirst("0+$", "").replaceFirst("^$", "0") + "p-1022"); } } else { // normal value result.append("1." + signifString.replaceFirst("0+$", "").replaceFirst("^$", "0") + "p" + exponent); } } return result.toString(); }
Example 15
Source File: BigInteger.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
/** * Converts this BigInteger to a {@code double}. This * conversion is similar to the * <i>narrowing primitive conversion</i> from {@code double} to * {@code float} as defined in section 5.1.3 of * <cite>The Java™ Language Specification</cite>: * if this BigInteger has too great a magnitude * to represent as a {@code double}, it will be converted to * {@link Double#NEGATIVE_INFINITY} or {@link * Double#POSITIVE_INFINITY} as appropriate. Note that even when * the return value is finite, this conversion can lose * information about the precision of the BigInteger value. * * @return this BigInteger converted to a {@code double}. */ public double doubleValue() { if (signum == 0) { return 0.0; } int exponent = ((mag.length - 1) << 5) + bitLengthForInt(mag[0]) - 1; // exponent == floor(log2(abs(this))Double) if (exponent < Long.SIZE - 1) { return longValue(); } else if (exponent > Double.MAX_EXPONENT) { return signum > 0 ? Double.POSITIVE_INFINITY : Double.NEGATIVE_INFINITY; } /* * We need the top SIGNIFICAND_WIDTH bits, including the "implicit" * one bit. To make rounding easier, we pick out the top * SIGNIFICAND_WIDTH + 1 bits, so we have one to help us round up or * down. twiceSignifFloor will contain the top SIGNIFICAND_WIDTH + 1 * bits, and signifFloor the top SIGNIFICAND_WIDTH. * * It helps to consider the real number signif = abs(this) * * 2^(SIGNIFICAND_WIDTH - 1 - exponent). */ int shift = exponent - DoubleConsts.SIGNIFICAND_WIDTH; long twiceSignifFloor; // twiceSignifFloor will be == abs().shiftRight(shift).longValue() // We do the shift into a long directly to improve performance. int nBits = shift & 0x1f; int nBits2 = 32 - nBits; int highBits; int lowBits; if (nBits == 0) { highBits = mag[0]; lowBits = mag[1]; } else { highBits = mag[0] >>> nBits; lowBits = (mag[0] << nBits2) | (mag[1] >>> nBits); if (highBits == 0) { highBits = lowBits; lowBits = (mag[1] << nBits2) | (mag[2] >>> nBits); } } twiceSignifFloor = ((highBits & LONG_MASK) << 32) | (lowBits & LONG_MASK); long signifFloor = twiceSignifFloor >> 1; signifFloor &= DoubleConsts.SIGNIF_BIT_MASK; // remove the implied bit /* * We round up if either the fractional part of signif is strictly * greater than 0.5 (which is true if the 0.5 bit is set and any lower * bit is set), or if the fractional part of signif is >= 0.5 and * signifFloor is odd (which is true if both the 0.5 bit and the 1 bit * are set). This is equivalent to the desired HALF_EVEN rounding. */ boolean increment = (twiceSignifFloor & 1) != 0 && ((signifFloor & 1) != 0 || abs().getLowestSetBit() < shift); long signifRounded = increment ? signifFloor + 1 : signifFloor; long bits = (long) ((exponent + DoubleConsts.EXP_BIAS)) << (DoubleConsts.SIGNIFICAND_WIDTH - 1); bits += signifRounded; /* * If signifRounded == 2^53, we'd need to set all of the significand * bits to zero and add 1 to the exponent. This is exactly the behavior * we get from just adding signifRounded to bits directly. If the * exponent is Double.MAX_EXPONENT, we round up (correctly) to * Double.POSITIVE_INFINITY. */ bits |= signum & DoubleConsts.SIGN_BIT_MASK; return Double.longBitsToDouble(bits); }
Example 16
Source File: ToHexString.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
static String hexLongStringtoHexDoubleString(String transString) { transString = transString.toLowerCase(); String zeros = ""; StringBuffer result = new StringBuffer(24); for(int i = 0; i < (16 - transString.length()); i++, zeros += "0"); transString = zeros + transString; // assert transString.length == 16; char topChar; // Extract sign if((topChar=transString.charAt(0)) >= '8' ) {// 8, 9, a, A, b, B, ... result.append("-"); // clear sign bit transString = Character.toString(Character.forDigit(Character.digit(topChar, 16) - 8, 16)) + transString.substring(1,16); } // check for NaN and infinity String signifString = transString.substring(3,16); if( transString.substring(0,3).equals("7ff") ) { if(signifString.equals("0000000000000")) { result.append("Infinity"); } else result.append("NaN"); } else { // finite value // Extract exponent int exponent = Integer.parseInt(transString.substring(0,3), 16) - DoubleConsts.EXP_BIAS; result.append("0x"); if (exponent == DoubleConsts.MIN_EXPONENT - 1) { // zero or subnormal if(signifString.equals("0000000000000")) { result.append("0.0p0"); } else { result.append("0." + signifString.replaceFirst("0+$", "").replaceFirst("^$", "0") + "p-1022"); } } else { // normal value result.append("1." + signifString.replaceFirst("0+$", "").replaceFirst("^$", "0") + "p" + exponent); } } return result.toString(); }
Example 17
Source File: ToHexString.java From jdk8u-jdk with GNU General Public License v2.0 | 4 votes |
static String hexLongStringtoHexDoubleString(String transString) { transString = transString.toLowerCase(); String zeros = ""; StringBuffer result = new StringBuffer(24); for(int i = 0; i < (16 - transString.length()); i++, zeros += "0"); transString = zeros + transString; // assert transString.length == 16; char topChar; // Extract sign if((topChar=transString.charAt(0)) >= '8' ) {// 8, 9, a, A, b, B, ... result.append("-"); // clear sign bit transString = Character.toString(Character.forDigit(Character.digit(topChar, 16) - 8, 16)) + transString.substring(1,16); } // check for NaN and infinity String signifString = transString.substring(3,16); if( transString.substring(0,3).equals("7ff") ) { if(signifString.equals("0000000000000")) { result.append("Infinity"); } else result.append("NaN"); } else { // finite value // Extract exponent int exponent = Integer.parseInt(transString.substring(0,3), 16) - DoubleConsts.EXP_BIAS; result.append("0x"); if (exponent == DoubleConsts.MIN_EXPONENT - 1) { // zero or subnormal if(signifString.equals("0000000000000")) { result.append("0.0p0"); } else { result.append("0." + signifString.replaceFirst("0+$", "").replaceFirst("^$", "0") + "p-1022"); } } else { // normal value result.append("1." + signifString.replaceFirst("0+$", "").replaceFirst("^$", "0") + "p" + exponent); } } return result.toString(); }
Example 18
Source File: ToHexString.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
static String hexLongStringtoHexDoubleString(String transString) { transString = transString.toLowerCase(); String zeros = ""; StringBuffer result = new StringBuffer(24); for(int i = 0; i < (16 - transString.length()); i++, zeros += "0"); transString = zeros + transString; // assert transString.length == 16; char topChar; // Extract sign if((topChar=transString.charAt(0)) >= '8' ) {// 8, 9, a, A, b, B, ... result.append("-"); // clear sign bit transString = Character.toString(Character.forDigit(Character.digit(topChar, 16) - 8, 16)) + transString.substring(1,16); } // check for NaN and infinity String signifString = transString.substring(3,16); if( transString.substring(0,3).equals("7ff") ) { if(signifString.equals("0000000000000")) { result.append("Infinity"); } else result.append("NaN"); } else { // finite value // Extract exponent int exponent = Integer.parseInt(transString.substring(0,3), 16) - DoubleConsts.EXP_BIAS; result.append("0x"); if (exponent == DoubleConsts.MIN_EXPONENT - 1) { // zero or subnormal if(signifString.equals("0000000000000")) { result.append("0.0p0"); } else { result.append("0." + signifString.replaceFirst("0+$", "").replaceFirst("^$", "0") + "p-1022"); } } else { // normal value result.append("1." + signifString.replaceFirst("0+$", "").replaceFirst("^$", "0") + "p" + exponent); } } return result.toString(); }
Example 19
Source File: Math.java From hottub 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 20
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); }