Home
last modified time | relevance | path

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

/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/
HDshorthash_siphash_ref.h9 v1 = ROTL64(v1, 13); \
11 v0 = ROTL64(v0, 32); \
13 v3 = ROTL64(v3, 16); \
16 v3 = ROTL64(v3, 21); \
19 v1 = ROTL64(v1, 17); \
21 v2 = ROTL64(v2, 32); \
/freebsd-13-stable/contrib/apr-util/crypto/
HDapr_siphash.c24 #define ROTL64(x, n) (((x) << (n)) | ((x) >> (64 - (n)))) macro
50 v0 += v1; v1=ROTL64(v1,13); v1 ^= v0; v0=ROTL64(v0,32); \
51 v2 += v3; v3=ROTL64(v3,16); v3 ^= v2; \
52 v0 += v3; v3=ROTL64(v3,21); v3 ^= v0; \
53 v2 += v1; v1=ROTL64(v1,17); v1 ^= v2; v2=ROTL64(v2,32); \
/freebsd-13-stable/sys/contrib/ck/src/
HDck_ht_hash.h58 #define ROTL64(x,y) _rotl64(x,y) macro
79 #define ROTL64(x,y) rotl64(x,y) macro
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/include/sodium/private/
HDcommon.h25 #define ROTL64(X, B) rotl64((X), (B)) macro