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

/external/chromium_org/third_party/smhasher/src/
H A DPlatform.h23 #define ROTR32(x,y) _rotr(x,y) macro
68 #define ROTR32(x,y) rotr32(x,y) macro
H A DBitvec.h198 template<> inline void rrot ( uint32_t & blob, int c ) { blob = ROTR32(blob,c); }
236 return ROTR32(blob,start) & ((1<<count)-1);
/external/chromium/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...]
/external/chromium_org/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 322 milliseconds