Home
last modified time | relevance | path

Searched defs:u128 (Results 1 – 25 of 42) sorted by relevance

12

/external/rust/crates/ahash/src/
Doperations.rs16 pub(crate) fn shuffle(a: u128) -> u128 { in shuffle()
36 pub(crate) fn add_and_shuffle(a: u128, b: u128) -> u128 { in add_and_shuffle()
43 pub(crate) fn shuffle_and_add(base: u128, to_add: u128) -> u128 { in shuffle_and_add()
70 pub(crate) fn aesenc(value: u128, xor: u128) -> u128 { in aesenc()
84 pub(crate) fn aesdec(value: u128, xor: u128) -> u128 { in aesdec()
Daes_hash.rs52 pub fn new_with_keys(key1: u128, key2: u128) -> Self { in new_with_keys()
80 fn hash_in(&mut self, new_value: u128) { in hash_in()
86 fn hash_in_2(&mut self, v1: u128, v2: u128) { in hash_in_2()
131 fn write_u128(&mut self, i: u128) { in write_u128()
Dconvert.rs96 fn read_u128(&self) -> (u128, &[u8]); in read_u128()
102 fn read_last_u128(&self) -> u128; in read_last_u128()
127 fn read_u128(&self) -> (u128, &[u8]) { in read_u128()
163 fn read_last_u128(&self) -> u128 { in read_last_u128()
Dspecialize.rs93 impl CallHasher for u128 { implementation
95 fn get_hash<H: Hasher>(value: &u128, mut hasher: H) -> u64 { in get_hash()
102 impl CallHasher for &u128 { implementation
104 fn get_hash<H: Hasher>(value: &&u128, mut hasher: H) -> u64 { in get_hash()
111 impl CallHasher for &&u128 { implementation
113 fn get_hash<H: Hasher>(value: &&&u128, mut hasher: H) -> u64 { in get_hash()
Dhash_quality_test.rs96 fn test_keys_change_output<T: HasherExt>(constructor: impl Fn(u128, u128) -> T) { in test_keys_change_output()
113 fn test_input_affect_every_byte<T: HasherExt>(constructor: impl Fn(u128, u128) -> T) { in test_input_affect_every_byte()
127 fn test_keys_affect_every_byte<H: Hash, T: HasherExt>(item: H, constructor: impl Fn(u128, u128) -> … in test_keys_affect_every_byte()
154 fn test_finish_is_consistent<T: Hasher>(constructor: impl Fn(u128, u128) -> T) { in test_finish_is_consistent()
162 fn test_single_key_bit_flip<T: Hasher>(constructor: impl Fn(u128, u128) -> T) { in test_single_key_bit_flip()
Dfallback_hash.rs35 pub fn new_with_keys(key1: u128, key2: u128) -> AHasher { in new_with_keys()
102 fn large_update(&mut self, new_data: u128) { in large_update()
148 fn write_u128(&mut self, i: u128) { in write_u128()
/external/rust/crates/byteorder/src/
Dlib.rs90 fn extend_sign128(val: u128, nbytes: usize) -> i128 { in extend_sign128()
102 fn unextend_sign128(val: i128, nbytes: usize) -> u128 { in unextend_sign128()
324 fn read_u128(buf: &[u8]) -> u128; in read_u128()
364 fn read_uint128(buf: &[u8], nbytes: usize) -> u128; in read_uint128()
482 fn write_u128(buf: &mut [u8], n: u128); in write_u128()
522 fn write_uint128(buf: &mut [u8], n: u128, nbytes: usize); in write_uint128()
1062 fn read_u128_into(src: &[u8], dst: &mut [u128]); in read_u128_into()
1393 fn write_u128_into(src: &[u128], dst: &mut [u8]); in write_u128_into()
1536 slice::from_raw_parts(src.as_ptr() as *const u128, src.len()) in write_i128_into() constant
1673 fn from_slice_u128(numbers: &mut [u128]); in from_slice_u128()
[all …]
Dio.rs376 fn read_u128<T: ByteOrder>(&mut self) -> Result<u128> { in read_u128()
460 fn read_uint128<T: ByteOrder>(&mut self, nbytes: usize) -> Result<u128> { in read_uint128()
675 dst: &mut [u128], in read_u128_into()
1495 n: u128, in write_uint128()
/external/rust/crates/ring/src/aead/gcm/
Dgcm_nohw.rs42 fn mul(a: u64, b: u64) -> u128 { in gcm_mul64_nohw()
141 pub(super) fn init(xi: [u64; 2]) -> super::u128 { in init()
171 fn gcm_polyval_nohw(xi: &mut [u64; 2], h: super::u128) { in gcm_polyval_nohw()
220 pub(super) fn gmult(xi: &mut Xi, h: super::u128) { in gmult()
226 pub(super) fn ghash(xi: &mut Xi, h: super::u128, input: &[u8]) { in ghash()
/external/elfutils/libdw/
Dlibdw_form.c47 Dwarf_Word u128; in __libdw_form_val_compute_len() local
/external/rust/crates/itoa/src/
Dudiv128.rs23 pub fn udivmod_1e19(n: u128) -> (u128, u64) { in udivmod_1e19()
/external/rust/crates/nom/src/number/
Dmacros.rs94 macro_rules! u128 ( ($i:expr, $e:expr) => ( {if $crate::number::Endianness::Big == $e { $crate::num… macro
/external/llvm-project/clang/test/Sema/
D128bitint.c6 typedef unsigned u128 __attribute__((__mode__(TI))); typedef
/external/clang/test/Sema/
D128bitint.c6 typedef unsigned u128 __attribute__((__mode__(TI))); typedef
/external/rust/crates/ring/src/aead/
Dgcm.rs245 struct u128 { struct
246 hi: u64,
247 lo: u64,
/external/llvm-project/clang/test/CodeGen/
DAtomics.c14 unsigned __int128 u128; variable
/external/rust/crates/oorandom/src/
Dlib.rs184 pub fn new_inc(seed: u128, increment: u128) -> Self { in new_inc()
198 pub fn state(&self) -> (u128, u128) { in state()
205 pub fn from_state(state: (u128, u128)) -> Self { in from_state()
/external/rust/crates/num-integer/benches/
Dgcd.rs129 T: AsPrimitive<u128>, in run_bench()
/external/rust/crates/bytes/src/buf/
Dbuf_impl.rs570 fn get_u128(&mut self) -> u128 { in get_u128()
590 fn get_u128_le(&mut self) -> u128 { in get_u128_le()
Dbuf_mut.rs582 fn put_u128(&mut self, n: u128) { in put_u128()
604 fn put_u128_le(&mut self, n: u128) { in put_u128_le()
/external/rust/crates/ppv-lite86/src/
Dgeneric.rs148 fn o_of_q(q: [u64; 2]) -> u128 { in o_of_q()
159 F: Fn(u128) -> u128, in omap()
170 F: Fn(u128, u128) -> u128, in omap2() argument
370 fn rotate_u128_right(x: u128, i: u32) -> u128 { in rotate_u128_right()
/external/compiler-rt/lib/ubsan/
Dubsan_value.h23 __extension__ typedef unsigned __int128 u128; typedef
/external/llvm-project/compiler-rt/lib/ubsan/
Dubsan_value.h22 __extension__ typedef unsigned __int128 u128; typedef
/external/rust/crates/rand/src/distributions/
Dinteger.rs52 fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> u128 { in sample()
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/time/
Dduration.cc118 uint128 u128 = 0; in MakeU128() local
137 uint128 u128 = static_cast<uint64_t>(rep_hi); in MakeU128Ticks() local
144 inline Duration MakeDurationFromU128(uint128 u128, bool is_neg) { in MakeDurationFromU128()

12