HomeSort by relevance Sort by last modified time
    Searched full:rotl64 (Results 1 - 10 of 10) 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...]
Bitvec.h 197 template<> inline void lrot ( uint64_t & blob, int c ) { blob = ROTL64(blob,c); }
Bitvec.cpp 652 b = a; lrot1 (&b,nbytes,i); assert(b == ROTL64(a,i));
653 b = a; lrot8 (&b,nbytes,i); assert(b == ROTL64(a,i));
654 b = a; lrot32 (&b,nbytes,i); assert(b == ROTL64(a,i));
  /external/chromium_org/third_party/angle/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...]
  /external/bison/lib/
bitrotate.h 36 rotl64 (uint64_t x, int n) function
  /external/chromium/crypto/third_party/nss/
sha512.cc 533 #define ROTL64(x,n) ((x << n) | (x >> (64 - n)))
    [all...]
  /external/chromium_org/crypto/third_party/nss/
sha512.cc 533 #define ROTL64(x,n) ((x << n) | (x >> (64 - n)))
    [all...]
  /external/valgrind/main/VEX/priv/
guest_ppc_toIR.c     [all...]
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.6/lib/
libmipsel-unknown-linux-android-sim.a     [all...]

Completed in 143 milliseconds