Lines Matching defs:BigInt
13 impl<'a, 'b> Div<&'b BigInt> for &'a BigInt { implementation
17 fn div(self, other: &BigInt) -> BigInt { in div()
23 impl<'a> DivAssign<&'a BigInt> for BigInt { implementation
25 fn div_assign(&mut self, other: &BigInt) { in div_assign()
37 impl Div<u32> for BigInt { implementation
41 fn div(self, other: u32) -> BigInt { in div()
46 impl DivAssign<u32> for BigInt { implementation
60 fn div(self, other: BigInt) -> BigInt { in div()
65 impl Div<u64> for BigInt { implementation
69 fn div(self, other: u64) -> BigInt { in div()
74 impl DivAssign<u64> for BigInt { implementation
88 fn div(self, other: BigInt) -> BigInt { in div()
93 impl Div<u128> for BigInt { implementation
97 fn div(self, other: u128) -> BigInt { in div()
102 impl DivAssign<u128> for BigInt { implementation
116 fn div(self, other: BigInt) -> BigInt { in div()
125 impl Div<i32> for BigInt { implementation
129 fn div(self, other: i32) -> BigInt { in div()
137 impl DivAssign<i32> for BigInt { implementation
154 fn div(self, other: BigInt) -> BigInt { in div()
162 impl Div<i64> for BigInt { implementation
166 fn div(self, other: i64) -> BigInt { in div()
174 impl DivAssign<i64> for BigInt { implementation
191 fn div(self, other: BigInt) -> BigInt { in div()
199 impl Div<i128> for BigInt { implementation
203 fn div(self, other: i128) -> BigInt { in div()
211 impl DivAssign<i128> for BigInt { implementation
228 fn div(self, other: BigInt) -> BigInt { in div()
238 impl<'a, 'b> Rem<&'b BigInt> for &'a BigInt { implementation
242 fn rem(self, other: &BigInt) -> BigInt { in rem()
254 impl<'a> RemAssign<&'a BigInt> for BigInt { implementation
256 fn rem_assign(&mut self, other: &BigInt) { in rem_assign()
268 impl Rem<u32> for BigInt { implementation
272 fn rem(self, other: u32) -> BigInt { in rem()
277 impl RemAssign<u32> for BigInt { implementation
291 fn rem(self, other: BigInt) -> BigInt { in rem()
296 impl Rem<u64> for BigInt { implementation
300 fn rem(self, other: u64) -> BigInt { in rem()
305 impl RemAssign<u64> for BigInt { implementation
319 fn rem(self, other: BigInt) -> BigInt { in rem()
324 impl Rem<u128> for BigInt { implementation
328 fn rem(self, other: u128) -> BigInt { in rem()
333 impl RemAssign<u128> for BigInt { implementation
347 fn rem(self, other: BigInt) -> BigInt { in rem()
356 impl Rem<i32> for BigInt { implementation
360 fn rem(self, other: i32) -> BigInt { in rem()
365 impl RemAssign<i32> for BigInt { implementation
376 fn rem(self, other: BigInt) -> BigInt { in rem()
384 impl Rem<i64> for BigInt { implementation
388 fn rem(self, other: i64) -> BigInt { in rem()
393 impl RemAssign<i64> for BigInt { implementation
404 fn rem(self, other: BigInt) -> BigInt { in rem()
412 impl Rem<i128> for BigInt { implementation
416 fn rem(self, other: i128) -> BigInt { in rem()
421 impl RemAssign<i128> for BigInt { implementation
432 fn rem(self, other: BigInt) -> BigInt { in rem()
440 impl CheckedDiv for BigInt { implementation
442 fn checked_div(&self, v: &BigInt) -> Option<BigInt> { in checked_div()