Lines Matching refs:to_f64
69 fn to_f64(&self) -> Option<f64> { in to_f64() method
70 Some(Self::to_f64(*self)) in to_f64()
103 n.to_f64().map(|x| Self::from_f64(x)) in from_f64()
494 pub fn to_f64(self) -> f64 { in to_f64() method
783 x.to_f64() in from()
1213 assert_eq!(f.to_f64(), 7.0f64); in test_f16_to_f64()
1217 let diff = (f.to_f64() - 7.1f64).abs(); in test_f16_to_f64()
1219 assert!(diff <= 4.0 * f16::EPSILON.to_f64()); in test_f16_to_f64()
1221 assert_eq!(f16::from_bits(0x0000_0001).to_f64(), 2.0f64.powi(-24)); in test_f16_to_f64()
1222 assert_eq!(f16::from_bits(0x0000_0005).to_f64(), 5.0 * 2.0f64.powi(-24)); in test_f16_to_f64()
1493 let roundtrip = f16::from_f64(f.to_f64()); in qc_roundtrip_f16_f64_is_identity()