Home | History | Annotate | Download | only in internal

Lines Matching refs:k1

104 			uint32_t k1 = hash_get_block_32(blocks, i);
106 k1 *= c1;
107 k1 = hash_rotl_32(k1, 15);
108 k1 *= c2;
110 h1 ^= k1;
120 uint32_t k1 = 0;
123 case 3: k1 ^= tail[2] << 16;
124 case 2: k1 ^= tail[1] << 8;
125 case 1: k1 ^= tail[0]; k1 *= c1; k1 = hash_rotl_32(k1, 15);
126 k1 *= c2; h1 ^= k1;
161 uint32_t k1 = hash_get_block_32(blocks, i*4 + 0);
166 k1 *= c1; k1 = hash_rotl_32(k1, 15); k1 *= c2; h1 ^= k1;
191 uint32_t k1 = 0;
214 case 4: k1 ^= tail[ 3] << 24;
215 case 3: k1 ^= tail[ 2] << 16;
216 case 2: k1 ^= tail[ 1] << 8;
217 case 1: k1 ^= tail[ 0] << 0;
218 k1 *= c1; k1 = hash_rotl_32(k1, 15); k1 *= c2; h1 ^= k1;
259 uint64_t k1 = hash_get_block_64(blocks, i*2 + 0);
262 k1 *= c1; k1 = hash_rotl_64(k1, 31); k1 *= c2; h1 ^= k1;
277 uint64_t k1 = 0;
290 case 8: k1 ^= ((uint64_t)(tail[ 7])) << 56;
291 case 7: k1 ^= ((uint64_t)(tail[ 6])) << 48;
292 case 6: k1 ^= ((uint64_t)(tail[ 5])) << 40;
293 case 5: k1 ^= ((uint64_t)(tail[ 4])) << 32;
294 case 4: k1 ^= ((uint64_t)(tail[ 3])) << 24;
295 case 3: k1 ^= ((uint64_t)(tail[ 2])) << 16;
296 case 2: k1 ^= ((uint64_t)(tail[ 1])) << 8;
297 case 1: k1 ^= ((uint64_t)(tail[ 0])) << 0;
298 k1 *= c1; k1 = hash_rotl_64(k1, 31); k1 *= c2; h1 ^= k1;