Sha256: 4f4f9fecfccb43f30c2784aa7c0bb656754a52b8ab431f7d1b551c673ab133f1

Contents?: true

Size: 568 Bytes

Versions: 11

Compression:

Stored size: 568 Bytes

Contents

use super::{combine_words, exp};

/* exp(x)/2 for x >= log(DBL_MAX), slightly better than 0.5*exp(x/2)*exp(x/2) */
#[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)]
pub(crate) fn expo2(x: f64) -> f64 {
    /* k is such that k*ln2 has minimal relative error and x - kln2 > log(DBL_MIN) */
    const K: i32 = 2043;
    let kln2 = f64::from_bits(0x40962066151add8b);

    /* note that k is odd and scale*scale overflows */
    let scale = combine_words(((0x3ff + K / 2) as u32) << 20, 0);
    /* exp(x - k ln2) * 2**(k-1) */
    exp(x - kln2) * scale * scale
}

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
wasmtime-29.0.0 ./ext/cargo-vendor/libm-0.2.11/src/math/expo2.rs
wasmtime-28.0.0 ./ext/cargo-vendor/libm-0.2.11/src/math/expo2.rs
wasmtime-27.0.0 ./ext/cargo-vendor/libm-0.2.11/src/math/expo2.rs
wasmtime-26.0.0 ./ext/cargo-vendor/libm-0.2.8/src/math/expo2.rs
wasmtime-25.0.2 ./ext/cargo-vendor/libm-0.2.8/src/math/expo2.rs
wasmtime-25.0.1 ./ext/cargo-vendor/libm-0.2.8/src/math/expo2.rs
wasmtime-25.0.0 ./ext/cargo-vendor/libm-0.2.8/src/math/expo2.rs
wasmtime-24.0.0 ./ext/cargo-vendor/libm-0.2.8/src/math/expo2.rs
wasmtime-23.0.2 ./ext/cargo-vendor/libm-0.2.8/src/math/expo2.rs
wasmtime-22.0.0 ./ext/cargo-vendor/libm-0.2.8/src/math/expo2.rs
wasmtime-21.0.1 ./ext/cargo-vendor/libm-0.2.8/src/math/expo2.rs