Searched refs:EXPONENT_MASK (Results 1 – 6 of 6) sorted by relevance
1034 bits = (bits & Float.EXPONENT_MASK) >> Float.MANTISSA_BITS; in getExponent()1044 bits = (bits & Double.EXPONENT_MASK) >> Double.MANTISSA_BITS; in getExponent()1156 long factor = ((bits & Double.EXPONENT_MASK) >> Double.MANTISSA_BITS) in scalb()1208 int factor = ((bits & Float.EXPONENT_MASK) >> Float.MANTISSA_BITS) in scalb()
69 int e = (int) ((inputNumberBits & Double.EXPONENT_MASK) >> Double.MANTISSA_BITS); in convertDouble()136 int e = (inputNumberBits & Float.EXPONENT_MASK) >> Float.MANTISSA_BITS; in convertFloat()
34 static final int EXPONENT_MASK = 0x7f800000; field in Float
34 static final long EXPONENT_MASK = 0x7ff0000000000000L; field in Double
1020 long factor = (int) ((bits & Double.EXPONENT_MASK) >> Double.MANTISSA_BITS) in scalb()1073 int factor = ((bits & Float.EXPONENT_MASK) >> Float.MANTISSA_BITS) in scalb()
88 #define EXPONENT_MASK (0x7FF0000000000000LL) macro94 #define EXPONENT_MASK (0x7FF0000000000000L) macro99 #define EXPONENT_MASK (0x7FF0000000000000) macro583 DOUBLE_TO_LONGBITS (result) = EXPONENT_MASK; in toDoubleHighPrecision()778 if ((m & EXPONENT_MASK) != 0) in doubleMantissa()