Searched refs:xxh_rotl64 (Results 1 – 1 of 1) sorted by relevance
/linux-6.1.9/lib/ |
D | xxhash.c | 53 #define xxh_rotl64(x, r) ((x << r) | (x >> (64 - r))) macro 159 acc = xxh_rotl64(acc, 31); in xxh64_round() 196 h64 = xxh_rotl64(v1, 1) + xxh_rotl64(v2, 7) + in xxh64() 197 xxh_rotl64(v3, 12) + xxh_rotl64(v4, 18); in xxh64() 213 h64 = xxh_rotl64(h64, 27) * PRIME64_1 + PRIME64_4; in xxh64() 219 h64 = xxh_rotl64(h64, 23) * PRIME64_2 + PRIME64_3; in xxh64() 225 h64 = xxh_rotl64(h64, 11) * PRIME64_1; in xxh64() 457 h64 = xxh_rotl64(v1, 1) + xxh_rotl64(v2, 7) + in xxh64_digest() 458 xxh_rotl64(v3, 12) + xxh_rotl64(v4, 18); in xxh64_digest() 473 h64 = xxh_rotl64(h64, 27) * PRIME64_1 + PRIME64_4; in xxh64_digest() [all …]
|