Lines Matching defs:BigUint
32 impl FromStr for BigUint { implementation
36 fn from_str(s: &str) -> Result<BigUint, ParseBigIntError> { in from_str()
43 pub(super) fn from_bitwise_digits_le(v: &[u8], bits: u8) -> BigUint { in from_bitwise_digits_le()
64 fn from_inexact_bitwise_digits_le(v: &[u8], bits: u8) -> BigUint { in from_inexact_bitwise_digits_le()
101 fn from_radix_digits_be(v: &[u8], radix: u32) -> BigUint { in from_radix_digits_be()
148 pub(super) fn from_radix_be(buf: &[u8], radix: u32) -> Option<BigUint> { in from_radix_be()
179 pub(super) fn from_radix_le(buf: &[u8], radix: u32) -> Option<BigUint> { in from_radix_le()
210 impl Num for BigUint { implementation
214 fn from_str_radix(s: &str, radix: u32) -> Result<BigUint, ParseBigIntError> { in from_str_radix()
304 impl ToPrimitive for BigUint { implementation
414 impl FromPrimitive for BigUint { implementation
416 fn from_i64(n: i64) -> Option<BigUint> { in from_i64()
425 fn from_i128(n: i128) -> Option<BigUint> { in from_i128()
434 fn from_u64(n: u64) -> Option<BigUint> { in from_u64()
439 fn from_u128(n: u128) -> Option<BigUint> { in from_u128()
444 fn from_f64(mut n: f64) -> Option<BigUint> { in from_f64()
474 impl From<u64> for BigUint { implementation
489 impl From<u128> for BigUint { implementation
540 impl ToBigUint for BigUint { implementation
542 fn to_biguint(&self) -> Option<BigUint> { in to_biguint()
576 pub(super) fn to_bitwise_digits_le(u: &BigUint, bits: u8) -> Vec<u8> { in to_bitwise_digits_le()
604 fn to_inexact_bitwise_digits_le(u: &BigUint, bits: u8) -> Vec<u8> { in to_inexact_bitwise_digits_le()
646 pub(super) fn to_radix_digits_le(u: &BigUint, radix: u32) -> Vec<u8> { in to_radix_digits_le()
714 pub(super) fn to_radix_le(u: &BigUint, radix: u32) -> Vec<u8> { in to_radix_le()
734 pub(crate) fn to_str_radix_reversed(u: &BigUint, radix: u32) -> Vec<u8> { in to_str_radix_reversed()