HomeSort by relevance Sort by last modified time
    Searched refs:rotl32 (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/smhasher/src/
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)
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/bison/lib/
bitrotate.h 55 rotl32 (uint32_t x, int n) function
  /external/chromium_org/third_party/angle_dx11/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/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);

Completed in 137 milliseconds