Home
last modified time | relevance | path

Searched refs:with_set_high_word (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/libm/src/math/
Dpow.rs60 use super::{fabs, get_high_word, scalbn, sqrt, with_set_high_word, with_set_low_word};
299 ax = with_set_high_word(ax, ix as u32); in pow()
308 let t_h: f64 = with_set_high_word( in pow()
381 let t: f64 = with_set_high_word(0.0, (n & !(0x000fffff >> k)) as u32); in pow()
405 z = with_set_high_word(z, j as u32); in pow()
Dmod.rs332 fn with_set_high_word(f: f64, hi: u32) -> f64 { in with_set_high_word() function