OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ROTR32
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/smhasher/src/
Platform.h
23
#define
ROTR32
(x,y) _rotr(x,y)
56
inline uint32_t
rotr32
( uint32_t x, int8_t r )
function
68
#define
ROTR32
(x,y)
rotr32
(x,y)
/external/chromium/crypto/third_party/nss/
sha512.cc
146
#define
ROTR32
(x,n) _lrotr(x,n)
149
#define
ROTR32
(x,n) ((x >> n) | (x << ((8 * sizeof x) - n)))
154
#define S0(x) (
ROTR32
(x, 2) ^
ROTR32
(x,13) ^
ROTR32
(x,22))
155
#define S1(x) (
ROTR32
(x, 6) ^
ROTR32
(x,11) ^
ROTR32
(x,25))
156
#define s0(x) (t1 = x,
ROTR32
(t1, 7) ^
ROTR32
(t1,18) ^ SHR(t1, 3)
[
all
...]
/external/chromium_org/crypto/third_party/nss/
sha512.cc
146
#define
ROTR32
(x,n) _lrotr(x,n)
149
#define
ROTR32
(x,n) ((x >> n) | (x << ((8 * sizeof x) - n)))
154
#define S0(x) (
ROTR32
(x, 2) ^
ROTR32
(x,13) ^
ROTR32
(x,22))
155
#define S1(x) (
ROTR32
(x, 6) ^
ROTR32
(x,11) ^
ROTR32
(x,25))
156
#define s0(x) (t1 = x,
ROTR32
(t1, 7) ^
ROTR32
(t1,18) ^ SHR(t1, 3)
[
all
...]
Completed in 238 milliseconds