Lines Matching refs:cbrt
108 fn cbrt(&self) -> Self { in cbrt() method
123 pub fn cbrt<T: Roots>(x: T) -> T { in cbrt() function
124 x.cbrt() in cbrt()
154 fn cbrt(&self) -> Self {
156 (*self as $U).cbrt() as Self
158 -((self.wrapping_neg() as $U).cbrt() as Self)
213 3 => return a.cbrt(),
319 fn cbrt(&self) -> Self {
324 (a as u64).cbrt() as $T
326 let lo = (a >> 3u32).cbrt() << 1;
360 return (a as u32).cbrt() as $T;
366 (x as f64).cbrt() as $T