Home
last modified time | relevance | path

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

/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/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/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/vixl/src/aarch32/
Dconstants-aarch32.cc201 case kMul: in ToCString()
Dconstants-aarch32.h205 kMul, enumerator
Dassembler-aarch32.h990 VIXL_ASSERT((type == kMul)); in Delegate()
Ddisasm-aarch32.cc1965 os().SetCurrentInstruction(kMul, kArithmetic); in mul()
1966 os() << ToCString(kMul) << ConditionPrinter(it_block_, cond) << size << " " in mul()
Dassembler-aarch32.cc7485 Delegate(kMul, &Assembler::mul, cond, size, rd, rn, rm); in mul()
/third_party/node/deps/v8/src/interpreter/
Dbytecodes.cc294 case Bytecode::kMul: in IsStarLookahead()
/third_party/node/deps/v8/src/debug/
Ddebug-evaluate.cc446 case Bytecode::kMul: in BytecodeHasNoSideEffect()