• Home
  • Raw
  • Download

Lines Matching defs:BigUint

43 pub(super) fn div_rem_digit(mut a: BigUint, b: BigDigit) -> (BigUint, BigDigit) {  in div_rem_digit()
68 fn rem_digit(a: &BigUint, b: BigDigit) -> BigDigit { in rem_digit()
119 fn div_rem(mut u: BigUint, mut d: BigUint) -> (BigUint, BigUint) { in div_rem()
166 pub(super) fn div_rem_ref(u: &BigUint, d: &BigUint) -> (BigUint, BigUint) { in div_rem_ref()
210 fn div_rem_core(mut a: BigUint, b: &[BigDigit]) -> (BigUint, BigUint) { in div_rem_core()
307 impl Div<BigUint> for BigUint { implementation
311 fn div(self, other: BigUint) -> BigUint { in div()
317 impl<'a, 'b> Div<&'b BigUint> for &'a BigUint { implementation
321 fn div(self, other: &BigUint) -> BigUint { in div()
326 impl<'a> DivAssign<&'a BigUint> for BigUint { implementation
328 fn div_assign(&mut self, other: &'a BigUint) { in div_assign()
339 impl Div<u32> for BigUint { implementation
343 fn div(self, other: u32) -> BigUint { in div()
348 impl DivAssign<u32> for BigUint { implementation
359 fn div(self, other: BigUint) -> BigUint { in div()
368 impl Div<u64> for BigUint { implementation
372 fn div(self, other: u64) -> BigUint { in div()
377 impl DivAssign<u64> for BigUint { implementation
391 fn div(self, other: BigUint) -> BigUint { in div()
402 fn div(self, other: BigUint) -> BigUint { in div()
411 impl Div<u128> for BigUint { implementation
415 fn div(self, other: u128) -> BigUint { in div()
421 impl DivAssign<u128> for BigUint { implementation
433 fn div(self, other: BigUint) -> BigUint { in div()
450 fn div(self, other: BigUint) -> BigUint { in div()
464 impl Rem<BigUint> for BigUint { implementation
468 fn rem(self, other: BigUint) -> BigUint { in rem()
478 impl<'a, 'b> Rem<&'b BigUint> for &'a BigUint { implementation
482 fn rem(self, other: &BigUint) -> BigUint { in rem()
491 impl<'a> RemAssign<&'a BigUint> for BigUint { implementation
493 fn rem_assign(&mut self, other: &BigUint) { in rem_assign()
504 impl<'a> Rem<u32> for &'a BigUint { implementation
508 fn rem(self, other: u32) -> BigUint { in rem()
512 impl RemAssign<u32> for BigUint { implementation
523 fn rem(mut self, other: &'a BigUint) -> BigUint { in rem()
559 impl Rem<u64> for BigUint { implementation
563 fn rem(self, other: u64) -> BigUint { in rem()
568 impl RemAssign<u64> for BigUint { implementation
579 fn rem(mut self, other: BigUint) -> BigUint { in rem()
585 impl Rem<u128> for BigUint { implementation
589 fn rem(self, other: u128) -> BigUint { in rem()
595 impl RemAssign<u128> for BigUint { implementation
606 fn rem(mut self, other: BigUint) -> BigUint { in rem()
612 impl CheckedDiv for BigUint { implementation
614 fn checked_div(&self, v: &BigUint) -> Option<BigUint> { in checked_div()