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

/freebsd-13-stable/sys/contrib/zstd/lib/common/
H A Dxxhash.c150 # define XXH_rotl64(x,r) _rotl64(x,r) macro
158 # define XXH_rotl64(x,r) ((x << r) | (x >> (64 - r))) macro
380 acc = XXH_rotl64(acc, 31);
421 h64 = XXH_rotl64(v1, 1) + XXH_rotl64(v2, 7) + XXH_rotl64(v3, 12) + XXH_rotl64(v4, 18);
436 h64 = XXH_rotl64(h64,27) * PRIME64_1 + PRIME64_4;
442 h64 = XXH_rotl64(h64, 23) * PRIME64_2 + PRIME64_3;
448 h64 = XXH_rotl64(h6
[all...]
/freebsd-13-stable/sys/contrib/openzfs/module/zstd/lib/
H A Dzstd.c5649 # define XXH_rotl64(x,r) _rotl64(x,r) macro
5657 # define XXH_rotl64(x,r) ((x << r) | (x >> (64 - r))) macro
5879 acc = XXH_rotl64(acc, 31);
5920 h64 = XXH_rotl64(v1, 1) + XXH_rotl64(v2, 7) + XXH_rotl64(v3, 12) + XXH_rotl64(v4, 18);
5935 h64 = XXH_rotl64(h64,27) * PRIME64_1 + PRIME64_4;
5941 h64 = XXH_rotl64(h64, 23) * PRIME64_2 + PRIME64_3;
5947 h64 = XXH_rotl64(h6
[all...]

Completed in 219 milliseconds