Home
last modified time | relevance | path

Searched refs:x1p120 (Results 1 – 13 of 13) sorted by relevance

/external/rust/crates/libm/src/math/
Dtan.rs44 let x1p120 = f32::from_bits(0x7b800000); // 0x1p120f === 2 ^ 120 in tan() localVariable
53 x / x1p120 as f64 in tan()
55 x + x1p120 as f64 in tan()
Dsin.rs45 let x1p120 = f64::from_bits(0x4770000000000000); // 0x1p120f === 2 ^ 120 in sin() localVariable
56 force_eval!(x / x1p120); in sin()
58 force_eval!(x + x1p120); in sin()
Dsincos.rs28 let x1p120 = f64::from_bits(0x4770000000000000); // 0x1p120 == 2^120 in sincos() localVariable
30 force_eval!(x / x1p120); in sincos()
32 force_eval!(x + x1p120); in sincos()
Dtanf.rs31 let x1p120 = f32::from_bits(0x7b800000); // 0x1p120f === 2 ^ 120 in tanf() localVariable
43 x / x1p120 in tanf()
45 x + x1p120 in tanf()
Dsinf.rs31 let x1p120 = f32::from_bits(0x7b800000); // 0x1p120f === 2 ^ 120 in sinf() localVariable
43 x / x1p120 in sinf()
45 x + x1p120 in sinf()
Dcoshf.rs12 let x1p120 = f32::from_bits(0x7b800000); // 0x1p120f === 2 ^ 120 in coshf() localVariable
23 force_eval!(x + x1p120); in coshf()
Dcosh.rs21 let x1p120 = f64::from_bits(0x4770000000000000); in cosh() localVariable
22 force_eval!(x + x1p120); in cosh()
Dasinhf.rs29 let x1p120 = f32::from_bits(0x7b800000); in asinhf() localVariable
30 force_eval!(x + x1p120); in asinhf()
Dasinh.rs30 let x1p120 = f64::from_bits(0x4770000000000000); in asinh() localVariable
31 force_eval!(x + x1p120); in asinh()
Dtrunc.rs13 let x1p120 = f64::from_bits(0x4770000000000000); // 0x1p120f === 2 ^ 120 in trunc() localVariable
29 force_eval!(x + x1p120); in trunc()
Dtruncf.rs13 let x1p120 = f32::from_bits(0x7b800000); // 0x1p120f === 2 ^ 120 in truncf() localVariable
29 force_eval!(x + x1p120); in truncf()
Dcosf.rs31 let x1p120 = f32::from_bits(0x7b800000); // 0x1p120f === 2 ^ 120 in cosf() localVariable
42 force_eval!(x + x1p120); in cosf()
Dsincosf.rs42 let x1p120 = f32::from_bits(0x7b800000); // 0x1p120 == 2^120 in sincosf() localVariable
44 force_eval!(x / x1p120); in sincosf()
46 force_eval!(x + x1p120); in sincosf()