Lines Matching refs:to_f64
186 pub fn to_f64(self) -> f64 { in to_f64() method
474 x.to_f64() in from()
681 fn to_f64(&self) -> Option<f64> { in to_f64() method
682 Some(Self::to_f64(*self)) in to_f64()
715 n.to_f64().map(|x| Self::from_f64(x)) in from_f64()
920 assert_eq!(f.to_f64(), 7.0f64); in test_bf16_to_f64()
924 let diff = (f.to_f64() - 7.1f64).abs(); in test_bf16_to_f64()
926 assert!(diff <= 4.0 * bf16::EPSILON.to_f64()); in test_bf16_to_f64()
929 assert_eq!(bf16::from_bits(0x0001).to_f64(), tiny64); in test_bf16_to_f64()
930 assert_eq!(bf16::from_bits(0x0005).to_f64(), 5.0 * tiny64); in test_bf16_to_f64()
1198 let roundtrip = bf16::from_f64(f.to_f64()); in qc_roundtrip_bf16_f64_is_identity()