Home
last modified time | relevance | path

Searched refs:kMul (Results 1 – 14 of 14) sorted by relevance

/third_party/abseil-cpp/absl/hash/internal/
Dcity.h83 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()
Dhash.h726 static constexpr uint64_t kMul =
837 m *= kMul;
/third_party/re2/util/
Dmix.h25 static const size_t kMul = static_cast<size_t>(0xdc3eb94af8ab4c93ULL); in Mix() local
26 hash_ *= kMul; in Mix()
/third_party/skia/include/utils/
DSkRandom.h141 static uint32_t NextLCG(uint32_t seed) { return kMul*seed + kAdd; } in NextLCG()
156 kMul = 1664525, enumerator
/third_party/flutter/skia/include/utils/
DSkRandom.h141 static uint32_t NextLCG(uint32_t seed) { return kMul*seed + kAdd; } in NextLCG()
156 kMul = 1664525, enumerator
/third_party/flutter/skia/src/effects/
DSkDiscretePathEffect.cpp65 uint32_t nextU() { uint32_t r = fSeed * kMul + kAdd; fSeed = r; return r; } in nextU()
78 kMul = 1664525, enumerator
/third_party/skia/src/effects/
DSkDiscretePathEffect.cpp40 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/
Dmul.h29 constexpr auto kNameMul = prim::kMul;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DHashing.h181 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/
DHashing.h180 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/
Dcity.cc214 const uint64_t kMul = 0x9ddfea08eb382d69ULL; in HashLen16() local
215 return HashLen16(u, v, kMul); in HashLen16()
Dhash.h727 static constexpr uint64_t kMul =
873 m *= kMul;
/third_party/flutter/skia/src/gpu/ops/
DGrTextureOp.cpp115 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/
Dcore_ops.h56 constexpr auto kMul = "Mul"; variable
483 inline const PrimitivePtr kPrimMul = std::make_shared<Primitive>(kMul);