Home
last modified time | relevance | path

Searched refs:FRAC_2_SQRT_PI (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/half/src/
Dbinary16.rs272 pub const FRAC_2_SQRT_PI: f16 = f16::FRAC_2_SQRT_PI; constant
746 pub const FRAC_2_SQRT_PI: f16 = f16(0x3C83u16); constant
1043 let frac_2_sqrt_pi = f16::from_f32(core::f32::consts::FRAC_2_SQRT_PI); in test_f16_consts_from_f32()
1064 assert_eq!(f16::FRAC_2_SQRT_PI, frac_2_sqrt_pi); in test_f16_consts_from_f32()
1103 let frac_2_sqrt_pi = f16::from_f64(core::f64::consts::FRAC_2_SQRT_PI); in test_f16_consts_from_f64()
1124 assert_eq!(f16::FRAC_2_SQRT_PI, frac_2_sqrt_pi); in test_f16_consts_from_f64()
Dbfloat.rs437 pub const FRAC_2_SQRT_PI: bf16 = bf16(0x3F90u16); constant
754 let frac_2_sqrt_pi = bf16::from_f32(core::f32::consts::FRAC_2_SQRT_PI); in test_bf16_consts_from_f32()
775 assert_eq!(bf16::FRAC_2_SQRT_PI, frac_2_sqrt_pi); in test_bf16_consts_from_f32()
812 let frac_2_sqrt_pi = bf16::from_f64(core::f64::consts::FRAC_2_SQRT_PI); in test_bf16_consts_from_f64()
833 assert_eq!(bf16::FRAC_2_SQRT_PI, frac_2_sqrt_pi); in test_bf16_consts_from_f64()
/external/rust/crates/num-traits/src/
Dfloat.rs2291 FRAC_2_SQRT_PI,