Home
last modified time | relevance | path

Searched refs:BigInt (Results 1 – 4 of 4) sorted by relevance

/linux/scripts/
H A Dextract-sys-certs.pl6 use Math::BigInt;
38 my $len = Math::BigInt->new("0x" . $3);
39 my $vma = Math::BigInt->new("0x" . $4);
40 my $lma = Math::BigInt->new("0x" . $5);
41 my $foff = Math::BigInt->new("0x" . $6);
98 my $start = Math::BigInt->new($symbols{"__cert_list_start"});
101 my $size_sym = Math::BigInt->new($symbols{"system_certificate_list_size"});
H A Dmarkup_oops.pl5 use Math::BigInt;
183 my $decodestart = Math::BigInt->from_hex("0x$target") - Math::BigInt->from_hex("0x$func_offset");
184 my $decodestop = Math::BigInt->from_hex("0x$target") + 8192;
206 …$vmaoffset = Math::BigInt->from_hex("0x$target") - Math::BigInt->from_hex("0x$fu") - Math::BigInt-…
222 my $delta = Math::BigInt->from_hex($ad) - Math::BigInt->from_hex($ta);
/linux/rust/syn/
H A Dbigint.rs6 pub(crate) struct BigInt { struct
10 impl BigInt { impl
12 BigInt { digits: Vec::new() } in new()
41 impl AddAssign<u8> for BigInt { implementation
56 impl MulAssign<u8> for BigInt { implementation
H A Dlit.rs1127 use crate::bigint::BigInt;
1704 let mut value = BigInt::new(); in parse_lit_int()