Home
last modified time | relevance | path

Searched defs:Limb (Results 1 – 3 of 3) sorted by relevance

/third_party/rust/crates/minimal-lexical/src/
Dbigint.rs127 pub fn rview(x: &[Limb]) -> ReverseView<Limb> { in rview()
138 pub fn compare(x: &[Limb], y: &[Limb]) -> cmp::Ordering { in compare()
210 pub fn nonzero(x: &[Limb], rindex: usize) -> bool { in nonzero()
409 pub fn scalar_add(x: Limb, y: Limb) -> (Limb, bool) { in scalar_add()
417 pub fn scalar_mul(x: Limb, y: Limb, carry: Limb) -> (Limb, Limb) { in scalar_mul()
430 pub fn small_add_from(x: &mut VecType, y: Limb, start: usize) -> Option<()> { in small_add_from()
472 pub fn large_add_from(x: &mut VecType, y: &[Limb], start: usize) -> Option<()> { in large_add_from()
577 pub fn long_mul(x: &[Limb], y: &[Limb]) -> Option<VecType> { in long_mul()
777 pub type Limb = u64; typedef
784 pub type Limb = u32; typedef
Dstackvec.rs78 pub unsafe fn push_unchecked(&mut self, value: bigint::Limb) { in push_unchecked()
105 pub unsafe fn pop_unchecked(&mut self) -> bigint::Limb { in pop_unchecked()
115 pub fn pop(&mut self) -> Option<bigint::Limb> { in pop()
130 pub unsafe fn extend_unchecked(&mut self, slc: &[bigint::Limb]) { in extend_unchecked()
171 pub unsafe fn resize_unchecked(&mut self, len: usize, value: bigint::Limb) { in resize_unchecked()
281 fn deref(&self) -> &[bigint::Limb] { in deref()
293 fn deref_mut(&mut self) -> &mut [bigint::Limb] { in deref_mut()
305 fn mul_assign(&mut self, rhs: &[bigint::Limb]) { in mul_assign()
Dheapvec.rs80 pub fn pop(&mut self) -> Option<bigint::Limb> { in pop()
173 fn deref(&self) -> &[bigint::Limb] { in deref()
180 fn deref_mut(&mut self) -> &mut [bigint::Limb] { in deref_mut()
187 fn mul_assign(&mut self, rhs: &[bigint::Limb]) { in mul_assign()