Searched refs:kMul (Results 1 – 14 of 14) sorted by relevance
/third_party/abseil-cpp/absl/hash/internal/ |
D | city.h | 83 const uint64_t kMul = 0x9ddfea08eb382d69ULL; in Hash128to64() local 84 uint64_t a = (Uint128Low64(x) ^ Uint128High64(x)) * kMul; in Hash128to64() 86 uint64_t b = (Uint128High64(x) ^ a) * kMul; in Hash128to64() 88 b *= kMul; in Hash128to64()
|
D | hash.h | 726 static constexpr uint64_t kMul = 837 m *= kMul;
|
/third_party/re2/util/ |
D | mix.h | 25 static const size_t kMul = static_cast<size_t>(0xdc3eb94af8ab4c93ULL); in Mix() local 26 hash_ *= kMul; in Mix()
|
/third_party/skia/include/utils/ |
D | SkRandom.h | 141 static uint32_t NextLCG(uint32_t seed) { return kMul*seed + kAdd; } in NextLCG() 156 kMul = 1664525, enumerator
|
/third_party/flutter/skia/include/utils/ |
D | SkRandom.h | 141 static uint32_t NextLCG(uint32_t seed) { return kMul*seed + kAdd; } in NextLCG() 156 kMul = 1664525, enumerator
|
/third_party/flutter/skia/src/effects/ |
D | SkDiscretePathEffect.cpp | 65 uint32_t nextU() { uint32_t r = fSeed * kMul + kAdd; fSeed = r; return r; } in nextU() 78 kMul = 1664525, enumerator
|
/third_party/skia/src/effects/ |
D | SkDiscretePathEffect.cpp | 40 uint32_t nextU() { uint32_t r = fSeed * kMul + kAdd; fSeed = r; return r; } in nextU() 53 kMul = 1664525, enumerator
|
/third_party/mindspore/mindspore/core/ops/ |
D | mul.h | 29 constexpr auto kNameMul = prim::kMul;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | Hashing.h | 181 const uint64_t kMul = 0x9ddfea08eb382d69ULL; in hash_16_bytes() local 182 uint64_t a = (low ^ high) * kMul; in hash_16_bytes() 184 uint64_t b = (high ^ a) * kMul; in hash_16_bytes() 186 b *= kMul; in hash_16_bytes()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | Hashing.h | 180 const uint64_t kMul = 0x9ddfea08eb382d69ULL; in hash_16_bytes() local 181 uint64_t a = (low ^ high) * kMul; in hash_16_bytes() 183 uint64_t b = (high ^ a) * kMul; in hash_16_bytes() 185 b *= kMul; in hash_16_bytes()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/internal/ |
D | city.cc | 214 const uint64_t kMul = 0x9ddfea08eb382d69ULL; in HashLen16() local 215 return HashLen16(u, v, kMul); in HashLen16()
|
D | hash.h | 727 static constexpr uint64_t kMul = 873 m *= kMul;
|
/third_party/flutter/skia/src/gpu/ops/ |
D | GrTextureOp.cpp | 115 static const Sk4f kMul = {1.f, -1.f, 1.f, -1.f}; in compute_domain() local 117 ltrb = SkNx_shuffle<0, 3, 2, 1>(kMul * ltrb + kAdd); in compute_domain()
|
/third_party/mindspore/mindspore/core/base/ |
D | core_ops.h | 56 constexpr auto kMul = "Mul"; variable 483 inline const PrimitivePtr kPrimMul = std::make_shared<Primitive>(kMul);
|