Home
last modified time | relevance | path

Searched refs:keyedh (Results 1 – 3 of 3) sorted by relevance

/dports/devel/pijul/pijul-1.0.0.a55/cargo-crates/twox-hash-1.6.1/src/
H A Dxxh3.rs1156 let keyedh = u64::from(combinedh) ^ u64::from(key[4..].read_u32_le()).wrapping_sub(seed); in hash_len_1to3_128bits() localVariable
1158 let mixedh = keyedh.wrapping_mul(PRIME64_2); in hash_len_1to3_128bits()
1172 let keyedh = in64h ^ key[8..].read_u64_le().wrapping_sub(seed); in hash_len_4to8_128bits() localVariable
1176 let mix64h1 = (keyedh ^ (keyedh >> 47)) in hash_len_4to8_128bits()
/dports/devel/dtool/dtool-0.11.0/cargo-crates/twox-hash-1.6.1/src/
H A Dxxh3.rs1156 let keyedh = u64::from(combinedh) ^ u64::from(key[4..].read_u32_le()).wrapping_sub(seed); in hash_len_1to3_128bits() localVariable
1158 let mixedh = keyedh.wrapping_mul(PRIME64_2); in hash_len_1to3_128bits()
1172 let keyedh = in64h ^ key[8..].read_u64_le().wrapping_sub(seed); in hash_len_4to8_128bits() localVariable
1176 let mix64h1 = (keyedh ^ (keyedh >> 47)) in hash_len_4to8_128bits()
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/cpp/src/arrow/vendored/xxhash/
H A Dxxh3.h1250 U64 const keyedh = (U64)combinedh ^ (XXH_readLE32(key32+1) - seed); in XXH3_len_1to3_128b() local
1252 U64 const mixedh = keyedh * PRIME64_2; in XXH3_len_1to3_128b()
1270 U64 const keyedh = in64h ^ (XXH_readLE64((const char*)keyPtr + 8) - seed); in XXH3_len_4to8_128b() local
1273 U64 const mix64h1 = ((keyedh ^ (keyedh >> 47)) * PRIME64_1) - len; in XXH3_len_4to8_128b()