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

  /external/libtextclassifier/util/hash/
farmhash.h 105 const uint64_t kMul = 0x9ddfea08eb382d69ULL;
106 uint64_t a = (Uint128Low64(x) ^ Uint128High64(x)) * kMul;
108 uint64_t b = (Uint128High64(x) ^ a) * kMul;
110 b *= kMul;
129 const uint64_t kMul = 0x9ddfea08eb382d69ULL;
130 uint64_t a = (Uint128Low64(x) ^ Uint128High64(x)) * kMul;
132 uint64_t b = (Uint128High64(x) ^ a) * kMul;
134 b *= kMul;
136 b *= kMul;
143 const uint64_t kMul = 0x9ddfea08eb382d69ULL
    [all...]
  /external/skia/src/effects/
SkDiscretePathEffect.cpp 64 uint32_t nextU() { uint32_t r = fSeed * kMul + kAdd; fSeed = r; return r; }
77 kMul = 1664525,
  /external/skia/include/utils/
SkRandom.h 156 static uint32_t NextLCG(uint32_t seed) { return kMul*seed + kAdd; }
171 kMul = 1664525,
  /art/compiler/optimizing/
induction_var_analysis.h 66 kMul,
  /external/llvm/include/llvm/ADT/
Hashing.h 181 const uint64_t kMul = 0x9ddfea08eb382d69ULL;
182 uint64_t a = (low ^ high) * kMul;
184 uint64_t b = (high ^ a) * kMul;
186 b *= kMul;
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
Hashing.h 181 const uint64_t kMul = 0x9ddfea08eb382d69ULL;
182 uint64_t a = (low ^ high) * kMul;
184 uint64_t b = (high ^ a) * kMul;
186 b *= kMul;
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
Hashing.h 181 const uint64_t kMul = 0x9ddfea08eb382d69ULL;
182 uint64_t a = (low ^ high) * kMul;
184 uint64_t b = (high ^ a) * kMul;
186 b *= kMul;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/
Hashing.h 181 const uint64_t kMul = 0x9ddfea08eb382d69ULL;
182 uint64_t a = (low ^ high) * kMul;
184 uint64_t b = (high ^ a) * kMul;
186 b *= kMul;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/
Hashing.h 181 const uint64_t kMul = 0x9ddfea08eb382d69ULL;
182 uint64_t a = (low ^ high) * kMul;
184 uint64_t b = (high ^ a) * kMul;
186 b *= kMul;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
Hashing.h 181 const uint64_t kMul = 0x9ddfea08eb382d69ULL;
182 uint64_t a = (low ^ high) * kMul;
184 uint64_t b = (high ^ a) * kMul;
186 b *= kMul;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
Hashing.h 181 const uint64_t kMul = 0x9ddfea08eb382d69ULL;
182 uint64_t a = (low ^ high) * kMul;
184 uint64_t b = (high ^ a) * kMul;
186 b *= kMul;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/
Hashing.h 181 const uint64_t kMul = 0x9ddfea08eb382d69ULL;
182 uint64_t a = (low ^ high) * kMul;
184 uint64_t b = (high ^ a) * kMul;
186 b *= kMul;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/
Hashing.h 181 const uint64_t kMul = 0x9ddfea08eb382d69ULL;
182 uint64_t a = (low ^ high) * kMul;
184 uint64_t b = (high ^ a) * kMul;
186 b *= kMul;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
Hashing.h 181 const uint64_t kMul = 0x9ddfea08eb382d69ULL;
182 uint64_t a = (low ^ high) * kMul;
184 uint64_t b = (high ^ a) * kMul;
186 b *= kMul;
  /external/vixl/src/aarch32/
constants-aarch32.h 201 kMul,

Completed in 413 milliseconds