Home
last modified time | relevance | path

Searched refs:input_lo (Results 1 – 25 of 56) sorted by relevance

123

/dports/sysutils/czkawka/czkawka-3.3.1/cargo-crates/xxhash-rust-0.8.2/src/
H A Dconst_xxh3.rs42 let mut input_lo = read_u64(input, input_offset); in mix16_b() localVariable
45 input_lo ^= read_u64(secret, secret_offset).wrapping_add(seed); in mix16_b()
48 mul128_fold64(input_lo, input_hi) in mix16_b()
67 let input_lo = read_u64(input, 0) ^ flip1; in xxh3_64_9to16() localVariable
70 let acc = (input.len() as u64).wrapping_add(input_lo.swap_bytes()) in xxh3_64_9to16()
72 .wrapping_add(mul128_fold64(input_lo, input_hi)); in xxh3_64_9to16()
293 let input_lo = (c1 as u32) << 16 | (c2 as u32) << 24 | c3 as u32 | (input.len() as u32) << 8; in xxh3_128_1to3() localVariable
294 let input_hi = input_lo.swap_bytes().rotate_left(13); in xxh3_128_1to3()
298 let keyed_lo = input_lo as u64 ^ flip_lo; in xxh3_128_1to3()
331 let input_lo = read_u64(input, 0); in xxh3_128_9to16() localVariable
[all …]
H A Dxxh3.rs105 let mut input_lo = read_64le_unaligned(input); in mix16_b() localVariable
108 input_lo ^= read_64le_unaligned(secret).wrapping_add(seed); in mix16_b()
111 mul128_fold64(input_lo, input_hi) in mix16_b()
339 let input_lo = read_64le_unaligned(input.as_ptr()) ^ flip1; in xxh3_64_9to16() localVariable
342 let acc = (input.len() as u64).wrapping_add(input_lo.swap_bytes()) in xxh3_64_9to16()
344 .wrapping_add(mul128_fold64(input_lo, input_hi)); in xxh3_64_9to16()
686 let input_lo = read_64le_unaligned(input.as_ptr()); in xxh3_128_9to16() localVariable
689 let (mut mul_low, mut mul_high) = mul64_to128(input_lo ^ input_hi ^ flip_lo, xxh64::PRIME_1); in xxh3_128_9to16()
749 let input_lo = (c1 as u32) << 16 | (c2 as u32) << 24 | c3 as u32 | (input.len() as u32) << 8; in xxh3_128_1to3() localVariable
750 let input_hi = input_lo.swap_bytes().rotate_left(13); in xxh3_128_1to3()
[all …]
/dports/security/hexl/hexl-1.2.3/hexl/include/hexl/util/
H A Dclang.hpp20 inline uint64_t BarrettReduce128(uint64_t input_hi, uint64_t input_lo, in BarrettReduce128() argument
24 (static_cast<uint128_t>(input_lo)); in BarrettReduce128()
H A Dgcc.hpp20 inline uint64_t BarrettReduce128(uint64_t input_hi, uint64_t input_lo, in BarrettReduce128() argument
24 (static_cast<uint128_t>(input_lo)); in BarrettReduce128()
H A Dmsvc.hpp29 inline uint64_t BarrettReduce128(uint64_t input_hi, uint64_t input_lo, in BarrettReduce128() argument
33 _udiv128(input_hi, input_lo, modulus, &remainder); in BarrettReduce128()
/dports/databases/percona57-client/percona-server-5.7.36-39/storage/rocksdb/rocksdb/util/
H A Dxxh3p.h463 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3p_len_4to8_64b() local
465 xxh_u64 const input_64 = input_lo | ((xxh_u64)input_hi << 32); in XXH3p_len_4to8_64b()
478 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3p_len_9to16_64b() local
480 xxh_u64 const acc = len + (input_lo + input_hi) + XXH3p_mul128_fold64(input_lo, input_hi); in XXH3p_len_9to16_64b()
1002 xxh_u64 const input_lo = XXH_readLE64(input); in XXH3p_mix16B() local
1005 input_lo ^ (XXH_readLE64(secret) + seed64), in XXH3p_mix16B()
1136 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3p_len_4to8_128b() local
1138 xxh_u64 const input_64_lo = input_lo + ((xxh_u64)input_hi << 32); in XXH3p_len_4to8_128b()
1157 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3p_len_9to16_128b() local
1159 XXH128_hash_t m128 = XXH_mult64to128(input_lo ^ input_hi, PRIME64_1); in XXH3p_len_9to16_128b()
/dports/databases/percona57-server/percona-server-5.7.36-39/storage/rocksdb/rocksdb/util/
H A Dxxh3p.h463 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3p_len_4to8_64b() local
465 xxh_u64 const input_64 = input_lo | ((xxh_u64)input_hi << 32); in XXH3p_len_4to8_64b()
478 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3p_len_9to16_64b() local
480 xxh_u64 const acc = len + (input_lo + input_hi) + XXH3p_mul128_fold64(input_lo, input_hi); in XXH3p_len_9to16_64b()
1002 xxh_u64 const input_lo = XXH_readLE64(input); in XXH3p_mix16B() local
1005 input_lo ^ (XXH_readLE64(secret) + seed64), in XXH3p_mix16B()
1136 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3p_len_4to8_128b() local
1138 xxh_u64 const input_64_lo = input_lo + ((xxh_u64)input_hi << 32); in XXH3p_len_4to8_128b()
1157 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3p_len_9to16_128b() local
1159 XXH128_hash_t m128 = XXH_mult64to128(input_lo ^ input_hi, PRIME64_1); in XXH3p_len_9to16_128b()
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/storage/rocksdb/rocksdb/util/
H A Dxxh3p.h463 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3p_len_4to8_64b() local
465 xxh_u64 const input_64 = input_lo | ((xxh_u64)input_hi << 32); in XXH3p_len_4to8_64b()
478 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3p_len_9to16_64b() local
480 xxh_u64 const acc = len + (input_lo + input_hi) + XXH3p_mul128_fold64(input_lo, input_hi); in XXH3p_len_9to16_64b()
1002 xxh_u64 const input_lo = XXH_readLE64(input); in XXH3p_mix16B() local
1005 input_lo ^ (XXH_readLE64(secret) + seed64), in XXH3p_mix16B()
1136 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3p_len_4to8_128b() local
1138 xxh_u64 const input_64_lo = input_lo + ((xxh_u64)input_hi << 32); in XXH3p_len_4to8_128b()
1157 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3p_len_9to16_128b() local
1159 XXH128_hash_t m128 = XXH_mult64to128(input_lo ^ input_hi, PRIME64_1); in XXH3p_len_9to16_128b()
/dports/databases/pgroonga/pgroonga-2.3.4/vendor/xxHash/
H A Dxxh3.h435 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3_len_4to8_64b() local
437 xxh_u64 const input_64 = input_lo | ((xxh_u64)input_hi << 32); in XXH3_len_4to8_64b()
450 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3_len_9to16_64b() local
452 xxh_u64 const acc = len + (input_lo + input_hi) + XXH3_mul128_fold64(input_lo, input_hi); in XXH3_len_9to16_64b()
965 xxh_u64 const input_lo = XXH_readLE64(input); in XXH3_mix16B() local
968 input_lo ^ (XXH_readLE64(secret) + seed64), in XXH3_mix16B()
1295 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3_len_4to8_128b() local
1297 xxh_u64 const input_64_lo = input_lo + ((xxh_u64)input_hi << 32); in XXH3_len_4to8_128b()
1316 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3_len_9to16_128b() local
1318 XXH128_hash_t m128 = XXH_mult64to128(input_lo ^ input_hi, PRIME64_1); in XXH3_len_9to16_128b()
/dports/games/freecell-solver/freecell-solver-6.2.0/xxHash-wrapper/xxHash-0.7.2/
H A Dxxh3.h437 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3_len_4to8_64b() local
439 xxh_u64 const input_64 = input_lo | ((xxh_u64)input_hi << 32); in XXH3_len_4to8_64b()
452 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3_len_9to16_64b() local
454 xxh_u64 const acc = len + (input_lo + input_hi) + XXH3_mul128_fold64(input_lo, input_hi); in XXH3_len_9to16_64b()
967 xxh_u64 const input_lo = XXH_readLE64(input); in XXH3_mix16B() local
970 input_lo ^ (XXH_readLE64(secret) + seed64), in XXH3_mix16B()
1297 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3_len_4to8_128b() local
1299 xxh_u64 const input_64_lo = input_lo + ((xxh_u64)input_hi << 32); in XXH3_len_4to8_128b()
1318 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3_len_9to16_128b() local
1320 XXH128_hash_t m128 = XXH_mult64to128(input_lo ^ input_hi, PRIME64_1); in XXH3_len_9to16_128b()
/dports/games/black-hole-solver/black-hole-solver-1.10.1/xxHash-wrapper/xxHash-0.7.2/
H A Dxxh3.h437 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3_len_4to8_64b() local
439 xxh_u64 const input_64 = input_lo | ((xxh_u64)input_hi << 32); in XXH3_len_4to8_64b()
452 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3_len_9to16_64b() local
454 xxh_u64 const acc = len + (input_lo + input_hi) + XXH3_mul128_fold64(input_lo, input_hi); in XXH3_len_9to16_64b()
967 xxh_u64 const input_lo = XXH_readLE64(input); in XXH3_mix16B() local
970 input_lo ^ (XXH_readLE64(secret) + seed64), in XXH3_mix16B()
1297 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3_len_4to8_128b() local
1299 xxh_u64 const input_64_lo = input_lo + ((xxh_u64)input_hi << 32); in XXH3_len_4to8_128b()
1318 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3_len_9to16_128b() local
1320 XXH128_hash_t m128 = XXH_mult64to128(input_lo ^ input_hi, PRIME64_1); in XXH3_len_9to16_128b()
/dports/textproc/sonic/sonic-1.3.0/cargo-crates/librocksdb-sys-6.7.4/rocksdb/util/
H A Dxxh3p.h461 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3p_len_4to8_64b() local
463 xxh_u64 const input_64 = input_lo | ((xxh_u64)input_hi << 32); in XXH3p_len_4to8_64b()
476 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3p_len_9to16_64b() local
478 xxh_u64 const acc = len + (input_lo + input_hi) + XXH3p_mul128_fold64(input_lo, input_hi); in XXH3p_len_9to16_64b()
1000 xxh_u64 const input_lo = XXH_readLE64(input); in XXH3p_mix16B() local
1003 input_lo ^ (XXH_readLE64(secret) + seed64), in XXH3p_mix16B()
1330 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3p_len_4to8_128b() local
1332 xxh_u64 const input_64_lo = input_lo + ((xxh_u64)input_hi << 32); in XXH3p_len_4to8_128b()
1351 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3p_len_9to16_128b() local
1353 XXH128_hash_t m128 = XXH_mult64to128(input_lo ^ input_hi, PRIME64_1); in XXH3p_len_9to16_128b()
/dports/databases/mariadb104-server/mariadb-10.4.24/storage/rocksdb/rocksdb/util/
H A Dxxh3p.h461 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3p_len_4to8_64b() local
463 xxh_u64 const input_64 = input_lo | ((xxh_u64)input_hi << 32); in XXH3p_len_4to8_64b()
476 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3p_len_9to16_64b() local
478 xxh_u64 const acc = len + (input_lo + input_hi) + XXH3p_mul128_fold64(input_lo, input_hi); in XXH3p_len_9to16_64b()
1000 xxh_u64 const input_lo = XXH_readLE64(input); in XXH3p_mix16B() local
1003 input_lo ^ (XXH_readLE64(secret) + seed64), in XXH3p_mix16B()
1330 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3p_len_4to8_128b() local
1332 xxh_u64 const input_64_lo = input_lo + ((xxh_u64)input_hi << 32); in XXH3p_len_4to8_128b()
1351 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3p_len_9to16_128b() local
1353 XXH128_hash_t m128 = XXH_mult64to128(input_lo ^ input_hi, PRIME64_1); in XXH3p_len_9to16_128b()
/dports/databases/mariadb104-client/mariadb-10.4.24/storage/rocksdb/rocksdb/util/
H A Dxxh3p.h461 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3p_len_4to8_64b() local
463 xxh_u64 const input_64 = input_lo | ((xxh_u64)input_hi << 32); in XXH3p_len_4to8_64b()
476 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3p_len_9to16_64b() local
478 xxh_u64 const acc = len + (input_lo + input_hi) + XXH3p_mul128_fold64(input_lo, input_hi); in XXH3p_len_9to16_64b()
1000 xxh_u64 const input_lo = XXH_readLE64(input); in XXH3p_mix16B() local
1003 input_lo ^ (XXH_readLE64(secret) + seed64), in XXH3p_mix16B()
1330 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3p_len_4to8_128b() local
1332 xxh_u64 const input_64_lo = input_lo + ((xxh_u64)input_hi << 32); in XXH3p_len_4to8_128b()
1351 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3p_len_9to16_128b() local
1353 XXH128_hash_t m128 = XXH_mult64to128(input_lo ^ input_hi, PRIME64_1); in XXH3p_len_9to16_128b()
/dports/databases/mariadb105-client/mariadb-10.5.15/storage/rocksdb/rocksdb/util/
H A Dxxh3p.h461 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3p_len_4to8_64b() local
463 xxh_u64 const input_64 = input_lo | ((xxh_u64)input_hi << 32); in XXH3p_len_4to8_64b()
476 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3p_len_9to16_64b() local
478 xxh_u64 const acc = len + (input_lo + input_hi) + XXH3p_mul128_fold64(input_lo, input_hi); in XXH3p_len_9to16_64b()
1000 xxh_u64 const input_lo = XXH_readLE64(input); in XXH3p_mix16B() local
1003 input_lo ^ (XXH_readLE64(secret) + seed64), in XXH3p_mix16B()
1330 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3p_len_4to8_128b() local
1332 xxh_u64 const input_64_lo = input_lo + ((xxh_u64)input_hi << 32); in XXH3p_len_4to8_128b()
1351 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3p_len_9to16_128b() local
1353 XXH128_hash_t m128 = XXH_mult64to128(input_lo ^ input_hi, PRIME64_1); in XXH3p_len_9to16_128b()
/dports/databases/mariadb103-client/mariadb-10.3.34/storage/rocksdb/rocksdb/util/
H A Dxxh3p.h461 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3p_len_4to8_64b() local
463 xxh_u64 const input_64 = input_lo | ((xxh_u64)input_hi << 32); in XXH3p_len_4to8_64b()
476 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3p_len_9to16_64b() local
478 xxh_u64 const acc = len + (input_lo + input_hi) + XXH3p_mul128_fold64(input_lo, input_hi); in XXH3p_len_9to16_64b()
1000 xxh_u64 const input_lo = XXH_readLE64(input); in XXH3p_mix16B() local
1003 input_lo ^ (XXH_readLE64(secret) + seed64), in XXH3p_mix16B()
1330 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3p_len_4to8_128b() local
1332 xxh_u64 const input_64_lo = input_lo + ((xxh_u64)input_hi << 32); in XXH3p_len_4to8_128b()
1351 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3p_len_9to16_128b() local
1353 XXH128_hash_t m128 = XXH_mult64to128(input_lo ^ input_hi, PRIME64_1); in XXH3p_len_9to16_128b()
/dports/databases/mariadb103-server/mariadb-10.3.34/storage/rocksdb/rocksdb/util/
H A Dxxh3p.h461 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3p_len_4to8_64b() local
463 xxh_u64 const input_64 = input_lo | ((xxh_u64)input_hi << 32); in XXH3p_len_4to8_64b()
476 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3p_len_9to16_64b() local
478 xxh_u64 const acc = len + (input_lo + input_hi) + XXH3p_mul128_fold64(input_lo, input_hi); in XXH3p_len_9to16_64b()
1000 xxh_u64 const input_lo = XXH_readLE64(input); in XXH3p_mix16B() local
1003 input_lo ^ (XXH_readLE64(secret) + seed64), in XXH3p_mix16B()
1330 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3p_len_4to8_128b() local
1332 xxh_u64 const input_64_lo = input_lo + ((xxh_u64)input_hi << 32); in XXH3p_len_4to8_128b()
1351 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3p_len_9to16_128b() local
1353 XXH128_hash_t m128 = XXH_mult64to128(input_lo ^ input_hi, PRIME64_1); in XXH3p_len_9to16_128b()
/dports/databases/mariadb105-server/mariadb-10.5.15/storage/rocksdb/rocksdb/util/
H A Dxxh3p.h461 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3p_len_4to8_64b() local
463 xxh_u64 const input_64 = input_lo | ((xxh_u64)input_hi << 32); in XXH3p_len_4to8_64b()
476 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3p_len_9to16_64b() local
478 xxh_u64 const acc = len + (input_lo + input_hi) + XXH3p_mul128_fold64(input_lo, input_hi); in XXH3p_len_9to16_64b()
1000 xxh_u64 const input_lo = XXH_readLE64(input); in XXH3p_mix16B() local
1003 input_lo ^ (XXH_readLE64(secret) + seed64), in XXH3p_mix16B()
1330 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3p_len_4to8_128b() local
1332 xxh_u64 const input_64_lo = input_lo + ((xxh_u64)input_hi << 32); in XXH3p_len_4to8_128b()
1351 { xxh_u64 const input_lo = XXH_readLE64(input) ^ (XXH_readLE64(secret) + seed); in XXH3p_len_9to16_128b() local
1353 XXH128_hash_t m128 = XXH_mult64to128(input_lo ^ input_hi, PRIME64_1); in XXH3p_len_9to16_128b()
/dports/databases/rocksdb/rocksdb-6.26.1/util/
H A Dxxph3.h1106 { xxh_u32 const input_lo = XXPH_readLE32(input); in XXPH3_len_4to8_64b() local
1108 xxh_u64 const input_64 = input_lo | ((xxh_u64)input_hi << 32); in XXPH3_len_4to8_64b()
1121 … { xxh_u64 const input_lo = XXPH_readLE64(input) ^ (XXPH_readLE64(secret) + seed); in XXPH3_len_9to16_64b() local
1123 xxh_u64 const acc = len + (input_lo + input_hi) + XXPH3_mul128_fold64(input_lo, input_hi); in XXPH3_len_9to16_64b()
1645 xxh_u64 const input_lo = XXPH_readLE64(input); in XXPH3_mix16B() local
1648 input_lo ^ (XXPH_readLE64(secret) + seed64), in XXPH3_mix16B()
/dports/databases/rocksdb-lite/rocksdb-6.26.1/util/
H A Dxxph3.h1106 { xxh_u32 const input_lo = XXPH_readLE32(input); in XXPH3_len_4to8_64b() local
1108 xxh_u64 const input_64 = input_lo | ((xxh_u64)input_hi << 32); in XXPH3_len_4to8_64b()
1121 … { xxh_u64 const input_lo = XXPH_readLE64(input) ^ (XXPH_readLE64(secret) + seed); in XXPH3_len_9to16_64b() local
1123 xxh_u64 const acc = len + (input_lo + input_hi) + XXPH3_mul128_fold64(input_lo, input_hi); in XXPH3_len_9to16_64b()
1645 xxh_u64 const input_lo = XXPH_readLE64(input); in XXPH3_mix16B() local
1648 input_lo ^ (XXPH_readLE64(secret) + seed64), in XXPH3_mix16B()
/dports/lang/spidermonkey78/firefox-78.9.0/mfbt/lz4/
H A Dxxh3.h727 xxh_u64 const input_lo = XXH_readLE64(input) ^ bitflip1; in XXH3_len_9to16_64b() local
730 + XXH_swap64(input_lo) + input_hi in XXH3_len_9to16_64b()
731 + XXH3_mul128_fold64(input_lo, input_hi); in XXH3_len_9to16_64b()
796 { xxh_u64 const input_lo = XXH_readLE64(input); in XXH3_mix16B() local
799 input_lo ^ (XXH_readLE64(secret) + seed64), in XXH3_mix16B()
1712 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3_len_4to8_128b() local
1714 xxh_u64 const input_64 = input_lo + ((xxh_u64)input_hi << 32); in XXH3_len_4to8_128b()
1740 xxh_u64 const input_lo = XXH_readLE64(input); in XXH3_len_9to16_128b() local
1742 XXH128_hash_t m128 = XXH_mult64to128(input_lo ^ input_hi ^ bitflipl, PRIME64_1); in XXH3_len_9to16_128b()
/dports/net/haproxy/haproxy-2.4.10/include/import/
H A Dxxhash.h2811 xxh_u64 const input_lo = XXH_readLE64(input) ^ bitflip1; in XXH3_len_9to16_64b() local
2814 + XXH_swap64(input_lo) + input_hi in XXH3_len_9to16_64b()
2815 + XXH3_mul128_fold64(input_lo, input_hi); in XXH3_len_9to16_64b()
2880 { xxh_u64 const input_lo = XXH_readLE64(input); in XXH3_mix16B() local
2883 input_lo ^ (XXH_readLE64(secret) + seed64), in XXH3_mix16B()
4284 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3_len_4to8_128b() local
4286 xxh_u64 const input_64 = input_lo + ((xxh_u64)input_hi << 32); in XXH3_len_4to8_128b()
4312 xxh_u64 const input_lo = XXH_readLE64(input); in XXH3_len_9to16_128b() local
4314 XXH128_hash_t m128 = XXH_mult64to128(input_lo ^ input_hi ^ bitflipl, XXH_PRIME64_1); in XXH3_len_9to16_128b()
/dports/www/firefox-esr/firefox-91.8.0/mfbt/lz4/
H A Dxxhash.h2809 xxh_u64 const input_lo = XXH_readLE64(input) ^ bitflip1; in XXH3_len_9to16_64b() local
2812 + XXH_swap64(input_lo) + input_hi in XXH3_len_9to16_64b()
2813 + XXH3_mul128_fold64(input_lo, input_hi); in XXH3_len_9to16_64b()
2878 { xxh_u64 const input_lo = XXH_readLE64(input); in XXH3_mix16B() local
2881 input_lo ^ (XXH_readLE64(secret) + seed64), in XXH3_mix16B()
4282 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3_len_4to8_128b() local
4284 xxh_u64 const input_64 = input_lo + ((xxh_u64)input_hi << 32); in XXH3_len_4to8_128b()
4310 xxh_u64 const input_lo = XXH_readLE64(input); in XXH3_len_9to16_128b() local
4312 XXH128_hash_t m128 = XXH_mult64to128(input_lo ^ input_hi ^ bitflipl, XXH_PRIME64_1); in XXH3_len_9to16_128b()
/dports/emulators/ppsspp/ppsspp-1.12.3/ext/
H A Dxxhash.h2808 xxh_u64 const input_lo = XXH_readLE64(input) ^ bitflip1; in XXH3_len_9to16_64b() local
2811 + XXH_swap64(input_lo) + input_hi in XXH3_len_9to16_64b()
2812 + XXH3_mul128_fold64(input_lo, input_hi); in XXH3_len_9to16_64b()
2877 { xxh_u64 const input_lo = XXH_readLE64(input); in XXH3_mix16B() local
2880 input_lo ^ (XXH_readLE64(secret) + seed64), in XXH3_mix16B()
4281 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3_len_4to8_128b() local
4283 xxh_u64 const input_64 = input_lo + ((xxh_u64)input_hi << 32); in XXH3_len_4to8_128b()
4309 xxh_u64 const input_lo = XXH_readLE64(input); in XXH3_len_9to16_128b() local
4311 XXH128_hash_t m128 = XXH_mult64to128(input_lo ^ input_hi ^ bitflipl, XXH_PRIME64_1); in XXH3_len_9to16_128b()
/dports/devel/R-cran-rlang/rlang/src/internal/xxhash/
H A Dxxhash.h2810 xxh_u64 const input_lo = XXH_readLE64(input) ^ bitflip1; in XXH3_len_9to16_64b() local
2813 + XXH_swap64(input_lo) + input_hi in XXH3_len_9to16_64b()
2814 + XXH3_mul128_fold64(input_lo, input_hi); in XXH3_len_9to16_64b()
2879 { xxh_u64 const input_lo = XXH_readLE64(input); in XXH3_mix16B() local
2882 input_lo ^ (XXH_readLE64(secret) + seed64), in XXH3_mix16B()
4283 { xxh_u32 const input_lo = XXH_readLE32(input); in XXH3_len_4to8_128b() local
4285 xxh_u64 const input_64 = input_lo + ((xxh_u64)input_hi << 32); in XXH3_len_4to8_128b()
4311 xxh_u64 const input_lo = XXH_readLE64(input); in XXH3_len_9to16_128b() local
4313 XXH128_hash_t m128 = XXH_mult64to128(input_lo ^ input_hi ^ bitflipl, XXH_PRIME64_1); in XXH3_len_9to16_128b()

123