HomeSort by relevance Sort by last modified time
    Searched refs:ROTR32 (Results 1 - 4 of 4) 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)
Bitvec.h 198 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/
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 662 milliseconds