Lines Matching refs:nth_root
55 fn nth_root(&self, n: u32) -> Self; in nth_root() method
83 self.nth_root(2) in sqrt()
109 self.nth_root(3) in cbrt()
130 pub fn nth_root<T: Roots>(x: T, n: u32) -> T { in nth_root() function
131 x.nth_root(n) in nth_root()
138 fn nth_root(&self, n: u32) -> Self {
140 (*self as $U).nth_root(n) as Self
143 -((self.wrapping_neg() as $U).nth_root(n) as Self)
206 fn nth_root(&self, n: u32) -> Self {
225 (a as u64).nth_root(n) as $T
227 let lo = (a >> n).nth_root(n) << 1;