OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ROTL32
(Results
1 - 5
of
5
) sorted by relevancy
/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_core/hsalsa20/ref2/
core_hsalsa20_ref2.c
51
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
(x14 + x10, 9)
[
all
...]
/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_core/salsa/ref/
core_salsa_ref.c
46
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
(x14 + x10, 9)
[
all
...]
/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_core/hchacha20/
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); \
/src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/private/
common.h
18
#define
ROTL32
(X, B)
rotl32
((X), (B))
20
rotl32
(const uint32_t x, const int b)
function in typeref:typename:uint32_t
/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/chacha20/ref/
chacha20_ref.c
30
#define ROTATE(v, c) (
ROTL32
(v, c))
Completed in 52 milliseconds
Indexes created Mon Oct 27 08:10:08 GMT 2025