Searched refs:ROTL32 (Results 1 - 10 of 10) sorted by relevance

/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/
H A Dcore_hsalsa20_ref2.c51 x4 ^= ROTL32(x0 + x12, 7);
52 x8 ^= ROTL32(x4 + x0, 9);
53 x12 ^= ROTL32(x8 + x4, 13);
54 x0 ^= ROTL32(x12 + x8, 18);
55 x9 ^= ROTL32(x5 + x1, 7);
56 x13 ^= ROTL32(x9 + x5, 9);
57 x1 ^= ROTL32(x13 + x9, 13);
58 x5 ^= ROTL32(x1 + x13, 18);
59 x14 ^= ROTL32(x10 + x6, 7);
60 x2 ^= ROTL32(x1
[all...]
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_core/salsa/ref/
H A Dcore_salsa_ref.c46 x4 ^= ROTL32(x0 + x12, 7);
47 x8 ^= ROTL32(x4 + x0, 9);
48 x12 ^= ROTL32(x8 + x4, 13);
49 x0 ^= ROTL32(x12 + x8, 18);
50 x9 ^= ROTL32(x5 + x1, 7);
51 x13 ^= ROTL32(x9 + x5, 9);
52 x1 ^= ROTL32(x13 + x9, 13);
53 x5 ^= ROTL32(x1 + x13, 18);
54 x14 ^= ROTL32(x10 + x6, 7);
55 x2 ^= ROTL32(x1
[all...]
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_core/hchacha20/
H A Dcore_hchacha20.c10 A += B; D = ROTL32(D ^ A, 16); \
11 C += D; B = ROTL32(B ^ C, 12); \
12 A += B; D = ROTL32(D ^ A, 8); \
13 C += D; B = ROTL32(B ^ C, 7); \
/freebsd-13-stable/sys/contrib/ck/src/
H A Dck_ht_hash.h57 #define ROTL32(x,y) _rotl(x,y) macro
78 #define ROTL32(x,y) rotl32(x,y) macro
140 k1 = ROTL32(k1,15);
144 h1 = ROTL32(h1,13);
162 k1 *= c1; k1 = ROTL32(k1,15); k1 *= c2; h1 ^= k1;
/freebsd-13-stable/contrib/unbound/compat/
H A Dchacha_private.h23 #define ROTL32(v, n) \ macro
40 #define ROTATE(v,c) (ROTL32(v,c))
/freebsd-13-stable/crypto/openssh/
H A Dchacha.c24 #define ROTL32(v, n) \ macro
41 #define ROTATE(v,c) (ROTL32(v,c))
/freebsd-13-stable/crypto/openssh/openbsd-compat/
H A Dchacha_private.h23 #define ROTL32(v, n) \ macro
40 #define ROTATE(v,c) (ROTL32(v,c))
/freebsd-13-stable/sys/crypto/chacha20/
H A Dchacha.c28 #define ROTL32(v, n) \ macro
45 #define ROTATE(v,c) (ROTL32(v,c))
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/include/sodium/private/
H A Dcommon.h18 #define ROTL32(X, B) rotl32((X), (B)) macro
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_stream/chacha20/ref/
H A Dchacha20_ref.c30 #define ROTATE(v, c) (ROTL32(v, c))

Completed in 134 milliseconds