Searched refs:transducer (Results 1 – 2 of 2) sorted by relevance
356 long transducer = Double.doubleToRawLongBits(d); in ilogb() local367 transducer &= DoubleConsts.SIGNIF_BIT_MASK; in ilogb()368 assert(transducer != 0L); in ilogb()374 while (transducer < in ilogb()376 transducer *= 2; in ilogb()426 int transducer = Float.floatToRawIntBits(f); in ilogb() local437 transducer &= FloatConsts.SIGNIF_BIT_MASK; in ilogb()438 assert(transducer != 0); in ilogb()444 while (transducer < in ilogb()446 transducer *= 2; in ilogb()
2063 long transducer = Double.doubleToRawLongBits(start + 0.0d); in nextAfter() local2078 transducer = transducer + (transducer >= 0L ? 1L:-1L); in nextAfter()2081 if (transducer > 0L) in nextAfter()2082 --transducer; in nextAfter()2084 if (transducer < 0L ) in nextAfter()2085 ++transducer; in nextAfter()2095 transducer = DoubleConsts.SIGN_BIT_MASK | 1L; in nextAfter()2098 return Double.longBitsToDouble(transducer); in nextAfter()2162 int transducer = Float.floatToRawIntBits(start + 0.0f); in nextAfter() local2177 transducer = transducer + (transducer >= 0 ? 1:-1); in nextAfter()[all …]