Lines Matching +full:5 +full:k
22 static __always_inline u64 fmix64(u64 k) in fmix64() argument
24 k ^= k >> 33; in fmix64()
25 k *= 0xff51afd7ed558ccdLLU; in fmix64()
26 k ^= k >> 33; in fmix64()
27 k *= 0xc4ceb9fe1a85ec53LLU; in fmix64()
28 k ^= k >> 33; in fmix64()
30 return k; in fmix64()
63 h1 = h1 * 5 + 0x52dce729; in murmurhash3_128()
72 h2 = h2 * 5 + 0x38495ab5; in murmurhash3_128()
117 k1 ^= ((u64)tail[5]) << 40; in murmurhash3_128()
119 case 5: in murmurhash3_128()