/freebsd/sys/contrib/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/ |
H A D | core_hsalsa20_ref2.c | 51 x4 ^= ROTL32(x0 + x12, 7); in crypto_core_hsalsa20() 52 x8 ^= ROTL32(x4 + x0, 9); in crypto_core_hsalsa20() 53 x12 ^= ROTL32(x8 + x4, 13); in crypto_core_hsalsa20() 54 x0 ^= ROTL32(x12 + x8, 18); in crypto_core_hsalsa20() 55 x9 ^= ROTL32(x5 + x1, 7); in crypto_core_hsalsa20() 56 x13 ^= ROTL32(x9 + x5, 9); in crypto_core_hsalsa20() 57 x1 ^= ROTL32(x13 + x9, 13); in crypto_core_hsalsa20() 58 x5 ^= ROTL32(x1 + x13, 18); in crypto_core_hsalsa20() 59 x14 ^= ROTL32(x10 + x6, 7); in crypto_core_hsalsa20() 60 x2 ^= ROTL32(x14 + x10, 9); in crypto_core_hsalsa20() [all …]
|
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_core/salsa/ref/ |
H A D | core_salsa_ref.c | 46 x4 ^= ROTL32(x0 + x12, 7); in crypto_core_salsa() 47 x8 ^= ROTL32(x4 + x0, 9); in crypto_core_salsa() 48 x12 ^= ROTL32(x8 + x4, 13); in crypto_core_salsa() 49 x0 ^= ROTL32(x12 + x8, 18); in crypto_core_salsa() 50 x9 ^= ROTL32(x5 + x1, 7); in crypto_core_salsa() 51 x13 ^= ROTL32(x9 + x5, 9); in crypto_core_salsa() 52 x1 ^= ROTL32(x13 + x9, 13); in crypto_core_salsa() 53 x5 ^= ROTL32(x1 + x13, 18); in crypto_core_salsa() 54 x14 ^= ROTL32(x10 + x6, 7); in crypto_core_salsa() 55 x2 ^= ROTL32(x14 + x10, 9); in crypto_core_salsa() [all …]
|
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_core/hchacha20/ |
H A D | core_hchacha20.c | 10 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/sys/contrib/ck/src/ |
H A D | ck_ht_hash.h | 57 #define ROTL32(x,y) _rotl(x,y) macro 78 #define ROTL32(x,y) rotl32(x,y) macro 140 k1 = ROTL32(k1,15); in MurmurHash3_x86_32() 144 h1 = ROTL32(h1,13); in MurmurHash3_x86_32() 162 k1 *= c1; k1 = ROTL32(k1,15); k1 *= c2; h1 ^= k1; in MurmurHash3_x86_32()
|
/freebsd/contrib/unbound/compat/ |
H A D | chacha_private.h | 23 #define ROTL32(v, n) \ macro 40 #define ROTATE(v,c) (ROTL32(v,c))
|
/freebsd/crypto/openssh/openbsd-compat/ |
H A D | chacha_private.h | 25 #define ROTL32(v, n) \ macro 42 #define ROTATE(v,c) (ROTL32(v,c))
|
/freebsd/crypto/openssh/ |
H A D | chacha.c | 23 #define ROTL32(v, n) \ macro 40 #define ROTATE(v,c) (ROTL32(v,c))
|
/freebsd/sys/crypto/chacha20/ |
H A D | chacha.c | 25 #define ROTL32(v, n) \ macro 42 #define ROTATE(v,c) (ROTL32(v,c))
|
/freebsd/sys/contrib/libsodium/src/libsodium/include/sodium/private/ |
H A D | common.h | 18 #define ROTL32(X, B) rotl32((X), (B)) macro
|
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_stream/chacha20/ref/ |
H A D | chacha20_ref.c | 30 #define ROTATE(v, c) (ROTL32(v, c))
|
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/ |
H A D | CSKYInstrInfo16Instr.td | 644 def : CompressPat<(ROTL32 sGPR:$rd, sGPR:$rd, sGPR:$rs2),
|
H A D | CSKYInstrInfo.td | 585 def ROTL32 : R_YXZ_SP_F1<0x10, 0x8, 1477 (ROTL32 GPR:$rs1, (ANDI32 GPR:$rs2, 0x1f))>;
|