Searched refs:with_set_low_word (Results 1 – 4 of 4) sorted by relevance
/external/rust/crates/libm/src/math/ |
D | pow.rs | 60 use super::{fabs, get_high_word, scalbn, sqrt, with_set_high_word, with_set_low_word}; 269 t1 = with_set_low_word(u + v, 0); in pow() 305 let s_h = with_set_low_word(ss, 0); in pow() 320 let t_h: f64 = with_set_low_word(3.0 + s2 + r, 0); in pow() 328 let p_h: f64 = with_set_low_word(u + v, 0); in pow() 335 t1 = with_set_low_word(((z_h + z_l) + DP_H[k as usize]) + t, 0); in pow() 340 let y1: f64 = with_set_low_word(y, 0); in pow() 389 let t: f64 = with_set_low_word(p_l + p_h, 0); in pow()
|
D | asin.rs | 42 use super::{fabs, get_high_word, get_low_word, sqrt, with_set_low_word}; 110 f = with_set_low_word(s, 0); in asin()
|
D | erf.rs | 1 use super::{exp, fabs, get_high_word, with_set_low_word}; 212 z = with_set_low_word(x, 0); in erfc2()
|
D | mod.rs | 340 fn with_set_low_word(f: f64, lo: u32) -> f64 { in with_set_low_word() function
|