const_soft_float/soft_f64/helpers/
scalbn.rsuse crate::soft_f64::SoftF64;
pub(crate) const fn scalbn(x: SoftF64, mut n: i32) -> SoftF64 {
let x1p1023 = SoftF64::from_bits(0x7fe0000000000000); let x1p53 = SoftF64::from_bits(0x4340000000000000); let x1p_1022 = SoftF64::from_bits(0x0010000000000000); let mut y = x;
if n > 1023 {
y = y.mul(x1p1023);
n -= 1023;
if n > 1023 {
y = y.mul(x1p1023);
n -= 1023;
if n > 1023 {
n = 1023;
}
}
} else if n < -1022 {
y = y.mul(x1p_1022.mul(x1p53));
n += 1022 - 53;
if n < -1022 {
y = y.mul(x1p_1022.mul(x1p53));
n += 1022 - 53;
if n < -1022 {
n = -1022;
}
}
}
y.mul(SoftF64::from_bits(((0x3ff + n) as u64) << 52))
}