Lines Matching refs:m128
5054 XXH128_hash_t m128 = XXH_mult64to128(keyed, XXH_PRIME64_1 + (len << 2)); in XXH3_len_4to8_128b() local
5056 m128.high64 += (m128.low64 << 1); in XXH3_len_4to8_128b()
5057 m128.low64 ^= (m128.high64 >> 3); in XXH3_len_4to8_128b()
5059 m128.low64 = XXH_xorshift64(m128.low64, 35); in XXH3_len_4to8_128b()
5060 m128.low64 *= 0x9FB21C651E98DF25ULL; in XXH3_len_4to8_128b()
5061 m128.low64 = XXH_xorshift64(m128.low64, 28); in XXH3_len_4to8_128b()
5062 m128.high64 = XXH3_avalanche(m128.high64); in XXH3_len_4to8_128b()
5063 return m128; in XXH3_len_4to8_128b()
5077 XXH128_hash_t m128 = XXH_mult64to128(input_lo ^ input_hi ^ bitflipl, XXH_PRIME64_1); in XXH3_len_9to16_128b() local
5082 m128.low64 += (xxh_u64)(len - 1) << 54; in XXH3_len_9to16_128b()
5098 …m128.high64 += (input_hi & 0xFFFFFFFF00000000ULL) + XXH_mult32to64((xxh_u32)input_hi, XXH_PRIME32_… in XXH3_len_9to16_128b()
5124 m128.high64 += input_hi + XXH_mult32to64((xxh_u32)input_hi, XXH_PRIME32_2 - 1); in XXH3_len_9to16_128b()
5127 m128.low64 ^= XXH_swap64(m128.high64); in XXH3_len_9to16_128b()
5130 XXH128_hash_t h128 = XXH_mult64to128(m128.low64, XXH_PRIME64_2); in XXH3_len_9to16_128b()
5131 h128.high64 += m128.high64 * XXH_PRIME64_2; in XXH3_len_9to16_128b()