Home
last modified time | relevance | path

Searched refs:h128 (Results 1 – 5 of 5) sorted by relevance

/external/zstd/lib/common/
Dxxhash.h5101 XXH128_hash_t h128; in XXH3_len_1to3_128b() local
5102 h128.low64 = XXH64_avalanche(keyed_lo); in XXH3_len_1to3_128b()
5103 h128.high64 = XXH64_avalanche(keyed_hi); in XXH3_len_1to3_128b()
5104 return h128; in XXH3_len_1to3_128b()
5198 XXH128_hash_t h128 = XXH_mult64to128(m128.low64, XXH_PRIME64_2); in XXH3_len_9to16_128b() local
5199 h128.high64 += m128.high64 * XXH_PRIME64_2; in XXH3_len_9to16_128b()
5201 h128.low64 = XXH3_avalanche(h128.low64); in XXH3_len_9to16_128b()
5202 h128.high64 = XXH3_avalanche(h128.high64); in XXH3_len_9to16_128b()
5203 return h128; in XXH3_len_9to16_128b()
5217 { XXH128_hash_t h128; in XXH3_len_0to16_128b() local
[all …]
/external/AFLplusplus/include/
Dxxhash.h5654 XXH128_hash_t h128; in XXH3_len_1to3_128b() local
5655 h128.low64 = XXH64_avalanche(keyed_lo); in XXH3_len_1to3_128b()
5656 h128.high64 = XXH64_avalanche(keyed_hi); in XXH3_len_1to3_128b()
5657 return h128; in XXH3_len_1to3_128b()
5775 XXH128_hash_t h128 = XXH_mult64to128(m128.low64, XXH_PRIME64_2); in XXH3_len_9to16_128b() local
5776 h128.high64 += m128.high64 * XXH_PRIME64_2; in XXH3_len_9to16_128b()
5778 h128.low64 = XXH3_avalanche(h128.low64); in XXH3_len_9to16_128b()
5779 h128.high64 = XXH3_avalanche(h128.high64); in XXH3_len_9to16_128b()
5780 return h128; in XXH3_len_9to16_128b()
5804 XXH128_hash_t h128; in XXH3_len_0to16_128b() local
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/xxhash/
Dxxhash.h4938 XXH128_hash_t h128; in XXH3_len_1to3_128b() local
4939 h128.low64 = XXH64_avalanche(keyed_lo); in XXH3_len_1to3_128b()
4940 h128.high64 = XXH64_avalanche(keyed_hi); in XXH3_len_1to3_128b()
4941 return h128; in XXH3_len_1to3_128b()
5035 XXH128_hash_t h128 = XXH_mult64to128(m128.low64, XXH_PRIME64_2); in XXH3_len_9to16_128b() local
5036 h128.high64 += m128.high64 * XXH_PRIME64_2; in XXH3_len_9to16_128b()
5038 h128.low64 = XXH3_avalanche(h128.low64); in XXH3_len_9to16_128b()
5039 h128.high64 = XXH3_avalanche(h128.high64); in XXH3_len_9to16_128b()
5040 return h128; in XXH3_len_9to16_128b()
5054 { XXH128_hash_t h128; in XXH3_len_0to16_128b() local
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/xxhash/tests/collisions/
Dhashes.h40 XXH128_hash_t h128; member
57 unih.h128 = v128; in uniHash128()
Dmain.c79 XXH128_hash_t const h128 = ((const XXH128_hash_t*)table)[n]; in printHash() local
80 hexRaw(&h128, sizeof(h128)); in printHash()
621 ((XXH128_hash_t*)hTablePtr)[index] = h.h128; in addHashCandidate()