Searched refs:hash_rotl_64 (Results 1 - 1 of 1) sorted by relevance

/freebsd-12-stable/contrib/jemalloc/include/jemalloc/internal/
H A Dhash.h20 hash_rotl_64(uint64_t x, int8_t r) { function
244 k1 *= c1; k1 = hash_rotl_64(k1, 31); k1 *= c2; h1 ^= k1;
246 h1 = hash_rotl_64(h1, 27); h1 += h2;
249 k2 *= c2; k2 = hash_rotl_64(k2, 33); k2 *= c1; h2 ^= k2;
251 h2 = hash_rotl_64(h2, 31); h2 += h1;
270 k2 *= c2; k2 = hash_rotl_64(k2, 33); k2 *= c1; h2 ^= k2;
280 k1 *= c1; k1 = hash_rotl_64(k1, 31); k1 *= c2; h1 ^= k1;

Completed in 59 milliseconds