Lines Matching refs:h128

5002         XXH128_hash_t h128;  in XXH3_len_1to3_128b()  local
5003 h128.low64 = XXH64_avalanche(keyed_lo); in XXH3_len_1to3_128b()
5004 h128.high64 = XXH64_avalanche(keyed_hi); in XXH3_len_1to3_128b()
5005 return h128; in XXH3_len_1to3_128b()
5099 XXH128_hash_t h128 = XXH_mult64to128(m128.low64, XXH_PRIME64_2); in XXH3_len_9to16_128b() local
5100 h128.high64 += m128.high64 * XXH_PRIME64_2; in XXH3_len_9to16_128b()
5102 h128.low64 = XXH3_avalanche(h128.low64); in XXH3_len_9to16_128b()
5103 h128.high64 = XXH3_avalanche(h128.high64); in XXH3_len_9to16_128b()
5104 return h128; in XXH3_len_9to16_128b()
5118 { XXH128_hash_t h128; in XXH3_len_0to16_128b() local
5121 h128.low64 = XXH64_avalanche(seed ^ bitflipl); in XXH3_len_0to16_128b()
5122 h128.high64 = XXH64_avalanche( seed ^ bitfliph); in XXH3_len_0to16_128b()
5123 return h128; in XXH3_len_0to16_128b()
5163 { XXH128_hash_t h128; in XXH3_len_17to128_128b() local
5164 h128.low64 = acc.low64 + acc.high64; in XXH3_len_17to128_128b()
5165 h128.high64 = (acc.low64 * XXH_PRIME64_1) in XXH3_len_17to128_128b()
5168 h128.low64 = XXH3_avalanche(h128.low64); in XXH3_len_17to128_128b()
5169 h128.high64 = (XXH64_hash_t)0 - XXH3_avalanche(h128.high64); in XXH3_len_17to128_128b()
5170 return h128; in XXH3_len_17to128_128b()
5212 { XXH128_hash_t h128; in XXH3_len_129to240_128b() local
5213 h128.low64 = acc.low64 + acc.high64; in XXH3_len_129to240_128b()
5214 h128.high64 = (acc.low64 * XXH_PRIME64_1) in XXH3_len_129to240_128b()
5217 h128.low64 = XXH3_avalanche(h128.low64); in XXH3_len_129to240_128b()
5218 h128.high64 = (XXH64_hash_t)0 - XXH3_avalanche(h128.high64); in XXH3_len_129to240_128b()
5219 return h128; in XXH3_len_129to240_128b()
5237 { XXH128_hash_t h128; in XXH3_hashLong_128b_internal() local
5238 h128.low64 = XXH3_mergeAccs(acc, in XXH3_hashLong_128b_internal()
5241 h128.high64 = XXH3_mergeAccs(acc, in XXH3_hashLong_128b_internal()
5245 return h128; in XXH3_hashLong_128b_internal()
5427 { XXH128_hash_t h128; in XXH3_128bits_digest() local
5428 h128.low64 = XXH3_mergeAccs(acc, in XXH3_128bits_digest()
5431 h128.high64 = XXH3_mergeAccs(acc, in XXH3_128bits_digest()
5435 return h128; in XXH3_128bits_digest()
5505 static void XXH3_combine16(void* dst, XXH128_hash_t h128) in XXH3_combine16() argument
5507 XXH_writeLE64( dst, XXH_readLE64(dst) ^ h128.low64 ); in XXH3_combine16()
5508 XXH_writeLE64( (char*)dst+8, XXH_readLE64((char*)dst+8) ^ h128.high64 ); in XXH3_combine16()
5539 XXH128_hash_t const h128 = XXH128(&scrambler, sizeof(scrambler), n); in XXH3_generateSecret() local
5540 XXH3_combine16((char*)secretBuffer + n*16, h128); in XXH3_generateSecret()