/external/chromium_org/third_party/smhasher/src/ |
Platform.h | 24 #define ROTR64(x,y) _rotr64(x,y) 61 inline uint64_t rotr64 ( uint64_t x, int8_t r ) function 69 #define ROTR64(x,y) rotr64(x,y)
|
Bitvec.h | 199 template<> inline void rrot ( uint64_t & blob, int c ) { blob = ROTR64(blob,c); } 242 return (uint32_t)ROTR64(blob,start) & ((1<<count)-1);
|
Bitvec.cpp | 656 b = a; rrot1 (&b,nbytes,i); assert(b == ROTR64(a,i)); 657 b = a; rrot8 (&b,nbytes,i); assert(b == ROTR64(a,i)); 658 b = a; rrot32 (&b,nbytes,i); assert(b == ROTR64(a,i)); 727 uint32_t a = (uint32_t)ROTR64(x,start);
|
/external/chromium/crypto/third_party/nss/ |
sha512.cc | 532 #define ROTR64(x,n) ((x >> n) | (x << (64 - n))) 535 #define S0(x) (ROTR64(x,28) ^ ROTR64(x,34) ^ ROTR64(x,39)) 536 #define S1(x) (ROTR64(x,14) ^ ROTR64(x,18) ^ ROTR64(x,41)) 537 #define s0(x) (t1 = x, ROTR64(t1, 1) ^ ROTR64(t1, 8) ^ SHR(t1,7)) 538 #define s1(x) (t2 = x, ROTR64(t2,19) ^ ROTR64(t2,61) ^ SHR(t2,6) [all...] |
/external/chromium_org/crypto/third_party/nss/ |
sha512.cc | 532 #define ROTR64(x,n) ((x >> n) | (x << (64 - n))) 535 #define S0(x) (ROTR64(x,28) ^ ROTR64(x,34) ^ ROTR64(x,39)) 536 #define S1(x) (ROTR64(x,14) ^ ROTR64(x,18) ^ ROTR64(x,41)) 537 #define s0(x) (t1 = x, ROTR64(t1, 1) ^ ROTR64(t1, 8) ^ SHR(t1,7)) 538 #define s1(x) (t2 = x, ROTR64(t2,19) ^ ROTR64(t2,61) ^ SHR(t2,6) [all...] |
/external/bison/lib/ |
bitrotate.h | 45 rotr64 (uint64_t x, int n) function
|
/prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.6/lib/ |
libmipsel-unknown-linux-android-sim.a | [all...] |