Searched defs:ROTR32 (Results 1 - 1 of 1) sorted by relevance

/external/libchrome/crypto/third_party/nss/
H A Dsha512.cc146 #define ROTR32(x,n) _lrotr(x,n) macro
149 #define ROTR32(x,n) ((x >> n) | (x << ((8 * sizeof x) - n))) macro
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(t
[all...]

Completed in 95 milliseconds