• Home
  • Raw
  • Download

Lines Matching refs:k1

88 			uint32_t k1 = hash_get_block_32(blocks, i);  in hash_x86_32()  local
90 k1 *= c1; in hash_x86_32()
91 k1 = hash_rotl_32(k1, 15); in hash_x86_32()
92 k1 *= c2; in hash_x86_32()
94 h1 ^= k1; in hash_x86_32()
104 uint32_t k1 = 0; in hash_x86_32() local
107 case 3: k1 ^= tail[2] << 16; in hash_x86_32()
108 case 2: k1 ^= tail[1] << 8; in hash_x86_32()
109 case 1: k1 ^= tail[0]; k1 *= c1; k1 = hash_rotl_32(k1, 15); in hash_x86_32()
110 k1 *= c2; h1 ^= k1; in hash_x86_32()
144 uint32_t k1 = hash_get_block_32(blocks, i*4 + 0); in hash_x86_128() local
149 k1 *= c1; k1 = hash_rotl_32(k1, 15); k1 *= c2; h1 ^= k1; in hash_x86_128()
174 uint32_t k1 = 0; in hash_x86_128() local
197 case 4: k1 ^= tail[ 3] << 24; in hash_x86_128()
198 case 3: k1 ^= tail[ 2] << 16; in hash_x86_128()
199 case 2: k1 ^= tail[ 1] << 8; in hash_x86_128()
200 case 1: k1 ^= tail[ 0] << 0; in hash_x86_128()
201 k1 *= c1; k1 = hash_rotl_32(k1, 15); k1 *= c2; h1 ^= k1; in hash_x86_128()
241 uint64_t k1 = hash_get_block_64(blocks, i*2 + 0); in hash_x64_128() local
244 k1 *= c1; k1 = hash_rotl_64(k1, 31); k1 *= c2; h1 ^= k1; in hash_x64_128()
259 uint64_t k1 = 0; in hash_x64_128() local
272 case 8: k1 ^= ((uint64_t)(tail[ 7])) << 56; /* falls through */ in hash_x64_128()
273 case 7: k1 ^= ((uint64_t)(tail[ 6])) << 48; /* falls through */ in hash_x64_128()
274 case 6: k1 ^= ((uint64_t)(tail[ 5])) << 40; /* falls through */ in hash_x64_128()
275 case 5: k1 ^= ((uint64_t)(tail[ 4])) << 32; /* falls through */ in hash_x64_128()
276 case 4: k1 ^= ((uint64_t)(tail[ 3])) << 24; /* falls through */ in hash_x64_128()
277 case 3: k1 ^= ((uint64_t)(tail[ 2])) << 16; /* falls through */ in hash_x64_128()
278 case 2: k1 ^= ((uint64_t)(tail[ 1])) << 8; /* falls through */ in hash_x64_128()
279 case 1: k1 ^= ((uint64_t)(tail[ 0])) << 0; in hash_x64_128()
280 k1 *= c1; k1 = hash_rotl_64(k1, 31); k1 *= c2; h1 ^= k1; in hash_x64_128()