Home
last modified time | relevance | path

Searched refs:xxh_rotl64 (Results 1 – 1 of 1) sorted by relevance

/linux/lib/
H A Dxxhash.c53 #define xxh_rotl64(x, r) ((x << r) | (x >> (64 - r))) macro
144 acc = xxh_rotl64(acc, 31); in xxh64_round()
181 h64 = xxh_rotl64(v1, 1) + xxh_rotl64(v2, 7) + in xxh64()
182 xxh_rotl64(v3, 12) + xxh_rotl64(v4, 18); in xxh64()
198 h64 = xxh_rotl64(h64, 27) * PRIME64_1 + PRIME64_4; in xxh64()
204 h64 = xxh_rotl64(h64, 23) * PRIME64_2 + PRIME64_3; in xxh64()
210 h64 = xxh_rotl64(h64, 11) * PRIME64_1; in xxh64()
321 h64 = xxh_rotl64(v1, 1) + xxh_rotl64(v2, 7) + in xxh64_digest()
322 xxh_rotl64(v3, 12) + xxh_rotl64(v4, 18); in xxh64_digest()
337 h64 = xxh_rotl64(h64, 27) * PRIME64_1 + PRIME64_4; in xxh64_digest()
[all …]