/external/chromium_org/third_party/angle/src/third_party/murmurhash/ |
MurmurHash3.cpp | 23 #define ROTL32(x,y) _rotl(x,y) 34 inline uint32_t rotl32 ( uint32_t x, int8_t r ) function 44 #define ROTL32(x,y) rotl32(x,y) 115 k1 = ROTL32(k1,15); 119 h1 = ROTL32(h1,13); 135 k1 *= c1; k1 = ROTL32(k1,15); k1 *= c2; h1 ^= k1; 178 k1 *= c1; k1 = ROTL32(k1,15); k1 *= c2; h1 ^= k1; 180 h1 = ROTL32(h1,19); h1 += h2; h1 = h1*5+0x561ccd1b; 182 k2 *= c2; k2 = ROTL32(k2,16); k2 *= c3; h2 ^= k2 [all...] |
/external/chromium_org/third_party/smhasher/src/ |
MurmurHash3.cpp | 23 #define ROTL32(x,y) _rotl(x,y) 34 inline uint32_t rotl32 ( uint32_t x, int8_t r ) function 44 #define ROTL32(x,y) rotl32(x,y) 115 k1 = ROTL32(k1,15); 119 h1 = ROTL32(h1,13); 135 k1 *= c1; k1 = ROTL32(k1,15); k1 *= c2; h1 ^= k1; 178 k1 *= c1; k1 = ROTL32(k1,15); k1 *= c2; h1 ^= k1; 180 h1 = ROTL32(h1,19); h1 += h2; h1 = h1*5+0x561ccd1b; 182 k2 *= c2; k2 = ROTL32(k2,16); k2 *= c3; h2 ^= k2 [all...] |
Platform.h | 21 #define ROTL32(x,y) _rotl(x,y) 46 inline uint32_t rotl32 ( uint32_t x, int8_t r ) function 66 #define ROTL32(x,y) rotl32(x,y)
|
PMurHash.c | 74 * ROTL32(x,r) Rotate x left by r bits 132 /* Find best way to ROTL32 */ 135 #define ROTL32(x,r) _rotl(x,r) 138 #define ROTL32(x,r) (((uint32_t)x << r) | ((uint32_t)x >> (32 - r))) 152 k1 = ROTL32(k1,15); \ 156 h1 = ROTL32(h1,13); \ 269 k1 *= C1; k1 = ROTL32(k1,15); k1 *= C2; h ^= k1;
|
Types.cpp | 99 uint32_t c = ROTL32(b,i) & 0xFF; 116 uint32_t c = ROTL32(b,i) & 0xFF;
|
Bitvec.h | 196 template<> inline void lrot ( uint32_t & blob, int c ) { blob = ROTL32(blob,c); }
|
sha1.cpp | 93 #define rol ROTL32
|
/external/llvm/test/CodeGen/PowerPC/ |
rotl-2.ll | 5 define i32 @rotl32(i32 %A, i8 %Amt) nounwind {
|
/external/bison/lib/ |
bitrotate.h | 55 rotl32 (uint32_t x, int n) function
|
/external/llvm/test/CodeGen/X86/ |
rotate.ll | 4 define i32 @rotl32(i32 %A, i8 %Amt) {
|
/external/llvm/lib/Target/ARM/MCTargetDesc/ |
ARMAddressingModes.h | 91 /// rotl32 - Rotate a 32-bit unsigned value left by a specified # bits. 93 static inline unsigned rotl32(unsigned Val, unsigned Amt) { function in namespace:llvm::ARM_AM 183 return rotl32(Arg, RotAmt) | ((RotAmt>>1) << 8);
|
/external/chromium/crypto/third_party/nss/ |
sha512.cc | 147 #define ROTL32(x,n) _lrotl(x,n) 150 #define ROTL32(x,n) ((x << n) | (x >> ((8 * sizeof x) - n))) [all...] |
/external/chromium_org/crypto/third_party/nss/ |
sha512.cc | 147 #define ROTL32(x,n) _lrotl(x,n) 150 #define ROTL32(x,n) ((x << n) | (x >> ((8 * sizeof x) - n))) [all...] |
/prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.6/lib/ |
libmipsel-unknown-linux-android-sim.a | [all...] |