Home
last modified time | relevance | path

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

/external/libtextclassifier/util/hash/
Dfarmhash.h105 const uint64_t kMul = 0x9ddfea08eb382d69ULL; in Hash128to64() local
106 uint64_t a = (Uint128Low64(x) ^ Uint128High64(x)) * kMul; in Hash128to64()
108 uint64_t b = (Uint128High64(x) ^ a) * kMul; in Hash128to64()
110 b *= kMul; in Hash128to64()
129 const uint64_t kMul = 0x9ddfea08eb382d69ULL; in Fingerprint() local
130 uint64_t a = (Uint128Low64(x) ^ Uint128High64(x)) * kMul; in Fingerprint()
132 uint64_t b = (Uint128High64(x) ^ a) * kMul; in Fingerprint()
134 b *= kMul; in Fingerprint()
136 b *= kMul; in Fingerprint()
143 const uint64_t kMul = 0x9ddfea08eb382d69ULL; in Fingerprint() local
[all …]
/external/skia/include/utils/
DSkRandom.h156 static uint32_t NextLCG(uint32_t seed) { return kMul*seed + kAdd; } in NextLCG()
171 kMul = 1664525, enumerator
/external/skia/src/effects/
DSkDiscretePathEffect.cpp64 uint32_t nextU() { uint32_t r = fSeed * kMul + kAdd; fSeed = r; return r; } in nextU()
77 kMul = 1664525, enumerator
/external/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()
/external/llvm/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()
/external/vixl/src/aarch32/
Dconstants-aarch32.cc201 case kMul: in ToCString()
Dconstants-aarch32.h201 kMul, enumerator
Dassembler-aarch32.h956 VIXL_ASSERT((type == kMul)); in Delegate()
Ddisasm-aarch32.cc1952 os().SetCurrentInstruction(kMul, kArithmetic); in mul()
1953 os() << ToCString(kMul) << ConditionPrinter(it_block_, cond) << size << " " in mul()
Dassembler-aarch32.cc6835 Delegate(kMul, &Assembler::mul, cond, size, rd, rn, rm); in mul()
/external/v8/src/interpreter/
Dbytecodes.cc235 case Bytecode::kMul: in IsStarLookahead()
/external/v8/src/debug/
Ddebug-evaluate.cc349 case Bytecode::kMul: in BytecodeHasNoSideEffect()
/external/v8/src/crankshaft/
Dhydrogen-instructions.cc883 case HValue::kMul: in CanDeoptimize()