HomeSort by relevance Sort by last modified time
    Searched defs:ROTL64 (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/smhasher/src/
Platform.h 22 #define ROTL64(x,y) _rotl64(x,y)
51 inline uint64_t rotl64 ( uint64_t x, int8_t r ) function
67 #define ROTL64(x,y) rotl64(x,y)
MurmurHash3.cpp 24 #define ROTL64(x,y) _rotl64(x,y)
39 inline uint64_t rotl64 ( uint64_t x, int8_t r ) function
45 #define ROTL64(x,y) rotl64(x,y)
277 k1 *= c1; k1 = ROTL64(k1,31); k1 *= c2; h1 ^= k1;
279 h1 = ROTL64(h1,27); h1 += h2; h1 = h1*5+0x52dce729;
281 k2 *= c2; k2 = ROTL64(k2,33); k2 *= c1; h2 ^= k2;
283 h2 = ROTL64(h2,31); h2 += h1; h2 = h2*5+0x38495ab5;
303 k2 *= c2; k2 = ROTL64(k2,33); k2 *= c1; h2 ^= k2;
313 k1 *= c1; k1 = ROTL64(k1,31); k1 *= c2; h1 ^= k1
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/third_party/murmurhash/
MurmurHash3.cpp 24 #define ROTL64(x,y) _rotl64(x,y)
39 inline uint64_t rotl64 ( uint64_t x, int8_t r ) function
45 #define ROTL64(x,y) rotl64(x,y)
277 k1 *= c1; k1 = ROTL64(k1,31); k1 *= c2; h1 ^= k1;
279 h1 = ROTL64(h1,27); h1 += h2; h1 = h1*5+0x52dce729;
281 k2 *= c2; k2 = ROTL64(k2,33); k2 *= c1; h2 ^= k2;
283 h2 = ROTL64(h2,31); h2 += h1; h2 = h2*5+0x38495ab5;
303 k2 *= c2; k2 = ROTL64(k2,33); k2 *= c1; h2 ^= k2;
313 k1 *= c1; k1 = ROTL64(k1,31); k1 *= c2; h1 ^= k1;
    [all...]

Completed in 154 milliseconds