Coverage Report

Created: 2026-07-16 06:17

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/rust/registry/src/index.crates.io-1949cf8c6b5b557f/libm-0.2.16/src/math/exp10f.rs
Line
Count
Source
1
use super::{exp2, exp2f, modff};
2
3
const LN10_F32: f32 = 3.32192809488736234787031942948939;
4
const LN10_F64: f64 = 3.32192809488736234787031942948939;
5
const P10: &[f32] = &[
6
    1e-7, 1e-6, 1e-5, 1e-4, 1e-3, 1e-2, 1e-1, 1e0, 1e1, 1e2, 1e3, 1e4, 1e5, 1e6, 1e7,
7
];
8
9
/// Calculates 10 raised to the power of `x` (f32).
10
#[cfg_attr(assert_no_panic, no_panic::no_panic)]
11
0
pub fn exp10f(x: f32) -> f32 {
12
    select_implementation! {
13
        name: x87_exp10f,
14
        use_arch_required: x86_no_sse,
15
        args: x,
16
    }
17
18
0
    let (mut y, n) = modff(x);
19
0
    let u = n.to_bits();
20
    /* fabsf(n) < 8 without raising invalid on nan */
21
0
    if ((u >> 23) & 0xff) < 0x7f + 3 {
22
0
        if y == 0.0 {
23
0
            return i!(P10, ((n as isize) + 7) as usize);
24
0
        }
25
0
        y = exp2f(LN10_F32 * y);
26
0
        return y * i!(P10, ((n as isize) + 7) as usize);
27
0
    }
28
0
    return exp2(LN10_F64 * (x as f64)) as f32;
29
0
}