OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rotrFixed
(Results
1 - 2
of
2
) sorted by null
/external/lzma/C/
RotateDefs.h
11
#define
rotrFixed
(x, n) _rotr((x), (n))
16
#define
rotrFixed
(x, n) (((x) >> (n)) | ((x) << (32 - (n))))
Sha256.c
25
#define S0(x) (
rotrFixed
(x, 2) ^
rotrFixed
(x,13) ^
rotrFixed
(x, 22))
26
#define S1(x) (
rotrFixed
(x, 6) ^
rotrFixed
(x,11) ^
rotrFixed
(x, 25))
27
#define s0(x) (
rotrFixed
(x, 7) ^
rotrFixed
(x,18) ^ (x >> 3))
28
#define s1(x) (
rotrFixed
(x,17) ^
rotrFixed
(x,19) ^ (x >> 10))
[
all
...]
Completed in 46 milliseconds