Lines Matching refs:f64
53 /// For f64, this follows as:
94 // Maximum mantissa for the fast-path (`1 << 53` for f64).
252 impl Float for f64 {
279 return powd(10.0f64, exponent as f64);
283 fn from_u64(u: u64) -> f64 {
288 fn from_bits(u: u64) -> f64 {
289 f64::from_bits(u)
294 f64::to_bits(self)
306 pub fn powd(x: f64, y: f64) -> f64 {