Home
last modified time | relevance | path

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

/aosp12/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHash.cpp48 constexpr uint64_t kMul = 0x9ddfea08eb382d69; in hash64Len16() local
49 uint64_t a = (u ^ v) * kMul; in hash64Len16()
51 uint64_t b = (v ^ a) * kMul; in hash64Len16()
53 b *= kMul; in hash64Len16()
/aosp12/art/compiler/optimizing/
H A Dinduction_var_analysis.cc616 } else if (a->induction_class != kGeometric || a->operation == kMul) { in TransferNeg()
637 return CreateInvariantOp(kMul, a, b); // direct invariant in TransferMul()
639 b->operation == kMul)) { in TransferMul()
647 a->operation == kMul)) { in TransferMul()
807 case kMul: in SolveOp()
1248 } else if (op == kMul) { in CreateSimplifiedInvariant()
1251 } else if (op == kMul) { in CreateSimplifiedInvariant()
1265 } else if (op == kMul || op == kNeg) { in CreateSimplifiedInvariant()
1268 } else if (op == kMul || op == kDiv) { in CreateSimplifiedInvariant()
1401 case kMul: inv += " * "; break; in InductionToString()
[all …]
H A Dinduction_var_range.cc716 case HInductionVarAnalysis::kMul: in GetVal()
1076 DCHECK(info->operation == HInductionVarAnalysis::kMul); in GenerateLastValueGeometric()
1087 if (info->operation == HInductionVarAnalysis::kMul) { in GenerateLastValueGeometric()
1221 case HInductionVarAnalysis::kMul: in GenerateCode()
1238 case HInductionVarAnalysis::kMul: in GenerateCode()
H A Dinduction_var_analysis.h66 kMul, enumerator
H A Dloop_analysis.cc239 case HInstruction::InstructionKind::kMul: in GetMachineInstructionCount()
H A Dinduction_var_range_test.cc141 case '*': op = HInductionVarAnalysis::kMul; break; in CreateInvariant()
201 op == '*' ? HInductionVarAnalysis::kMul in CreateGeometric()
H A Dloop_optimization.cc2008 case HInstruction::kMul: in GenerateVecOp()
H A Dnodes.h5340 : HBinaryOperation(kMul, result_type, left, right, SideEffects::None(), dex_pc) {