Lines Matching refs:h128

5033         XXH128_hash_t h128;  in XXH3_len_1to3_128b()  local
5034 h128.low64 = XXH64_avalanche(keyed_lo); in XXH3_len_1to3_128b()
5035 h128.high64 = XXH64_avalanche(keyed_hi); in XXH3_len_1to3_128b()
5036 return h128; in XXH3_len_1to3_128b()
5130 XXH128_hash_t h128 = XXH_mult64to128(m128.low64, XXH_PRIME64_2); in XXH3_len_9to16_128b() local
5131 h128.high64 += m128.high64 * XXH_PRIME64_2; in XXH3_len_9to16_128b()
5133 h128.low64 = XXH3_avalanche(h128.low64); in XXH3_len_9to16_128b()
5134 h128.high64 = XXH3_avalanche(h128.high64); in XXH3_len_9to16_128b()
5135 return h128; in XXH3_len_9to16_128b()
5149 { XXH128_hash_t h128; in XXH3_len_0to16_128b() local
5152 h128.low64 = XXH64_avalanche(seed ^ bitflipl); in XXH3_len_0to16_128b()
5153 h128.high64 = XXH64_avalanche( seed ^ bitfliph); in XXH3_len_0to16_128b()
5154 return h128; in XXH3_len_0to16_128b()
5194 { XXH128_hash_t h128; in XXH3_len_17to128_128b() local
5195 h128.low64 = acc.low64 + acc.high64; in XXH3_len_17to128_128b()
5196 h128.high64 = (acc.low64 * XXH_PRIME64_1) in XXH3_len_17to128_128b()
5199 h128.low64 = XXH3_avalanche(h128.low64); in XXH3_len_17to128_128b()
5200 h128.high64 = (XXH64_hash_t)0 - XXH3_avalanche(h128.high64); in XXH3_len_17to128_128b()
5201 return h128; in XXH3_len_17to128_128b()
5243 { XXH128_hash_t h128; in XXH3_len_129to240_128b() local
5244 h128.low64 = acc.low64 + acc.high64; in XXH3_len_129to240_128b()
5245 h128.high64 = (acc.low64 * XXH_PRIME64_1) in XXH3_len_129to240_128b()
5248 h128.low64 = XXH3_avalanche(h128.low64); in XXH3_len_129to240_128b()
5249 h128.high64 = (XXH64_hash_t)0 - XXH3_avalanche(h128.high64); in XXH3_len_129to240_128b()
5250 return h128; in XXH3_len_129to240_128b()
5268 { XXH128_hash_t h128; in XXH3_hashLong_128b_internal() local
5269 h128.low64 = XXH3_mergeAccs(acc, in XXH3_hashLong_128b_internal()
5272 h128.high64 = XXH3_mergeAccs(acc, in XXH3_hashLong_128b_internal()
5276 return h128; in XXH3_hashLong_128b_internal()
5458 { XXH128_hash_t h128; in XXH3_128bits_digest() local
5459 h128.low64 = XXH3_mergeAccs(acc, in XXH3_128bits_digest()
5462 h128.high64 = XXH3_mergeAccs(acc, in XXH3_128bits_digest()
5466 return h128; in XXH3_128bits_digest()
5536 static void XXH3_combine16(void* dst, XXH128_hash_t h128) in XXH3_combine16() argument
5538 XXH_writeLE64( dst, XXH_readLE64(dst) ^ h128.low64 ); in XXH3_combine16()
5539 XXH_writeLE64( (char*)dst+8, XXH_readLE64((char*)dst+8) ^ h128.high64 ); in XXH3_combine16()
5570 XXH128_hash_t const h128 = XXH128(&scrambler, sizeof(scrambler), n); in XXH3_generateSecret() local
5571 XXH3_combine16((char*)secretBuffer + n*16, h128); in XXH3_generateSecret()