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

  /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/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...]
Types.cpp 99 uint32_t c = ROTL32(b,i) & 0xFF;
116 uint32_t c = ROTL32(b,i) & 0xFF;
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;
Bitvec.h 196 template<> inline void lrot ( uint32_t & blob, int c ) { blob = ROTL32(blob,c); }
sha1.cpp 93 #define rol ROTL32
  /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...]

Completed in 437 milliseconds