HomeSort by: relevance | last modified time | path
    Searched defs:XXH_rotl64 (Results 1 - 1 of 1) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/common/
xxhash.h 2679 # define XXH_rotl64 __builtin_rotateleft64
2683 # define XXH_rotl64(x,r) _rotl64(x,r)
2686 # define XXH_rotl64(x,r) (((x) << (r)) | ((x) >> (64 - (r))))
3330 acc = XXH_rotl64(acc, 31);
3398 hash = XXH_rotl64(hash,27) * XXH_PRIME64_1 + XXH_PRIME64_4;
3404 hash = XXH_rotl64(hash, 23) * XXH_PRIME64_2 + XXH_PRIME64_3;
3409 hash = XXH_rotl64(hash, 11) * XXH_PRIME64_1;
3454 h64 = XXH_rotl64(v1, 1) + XXH_rotl64(v2, 7) + XXH_rotl64(v3, 12) + XXH_rotl64(v4, 18)
    [all...]

Completed in 18 milliseconds