Searched refs:with_set_low_word (Results 1 – 5 of 5) sorted by relevance
/external/rust/android-crates-io/crates/libm/src/math/ |
D | pow.rs | 60 use super::{fabs, get_high_word, scalbn, sqrt, with_set_high_word, with_set_low_word}; 254 t1 = with_set_low_word(u + v, 0); in pow() 290 let s_h = with_set_low_word(ss, 0); in pow() 305 let t_h: f64 = with_set_low_word(3.0 + s2 + r, 0); in pow() 313 let p_h: f64 = with_set_low_word(u + v, 0); in pow() 320 t1 = with_set_low_word(((z_h + z_l) + i!(DP_H, k as usize)) + t, 0); in pow() 325 let y1: f64 = with_set_low_word(y, 0); in pow() 374 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 | 352 fn with_set_low_word(f: f64, lo: u32) -> f64 { in with_set_low_word() function
|
/external/rust/android-crates-io/crates/minimal-lexical/src/ |
D | libm.rs | 806 t1 = with_set_low_word(u + v, 0); in powd() 842 let s_h = with_set_low_word(ss, 0); in powd() 857 let t_h: f64 = with_set_low_word(3.0 + s2 + r, 0); in powd() 865 let p_h: f64 = with_set_low_word(u + v, 0); in powd() 872 t1 = with_set_low_word(((z_h + z_l) + i!(DP_H, k as usize)) + t, 0); in powd() 877 let y1: f64 = with_set_low_word(y, 0); in powd() 926 let t: f64 = with_set_low_word(p_l + p_h, 0); in powd() 1233 fn with_set_low_word(f: f64, lo: u32) -> f64 { in with_set_low_word() function
|