Home
last modified time | relevance | path

Searched refs:Factor (Results 1 – 25 of 56) sorted by relevance

123

/external/llvm/lib/Transforms/Scalar/
DReassociate.cpp79 struct Factor { struct
83 Factor(Value *Base, unsigned Power) : Base(Base), Power(Power) {} in Factor() function
87 bool operator()(const Factor &LHS, const Factor &RHS) { in operator ()()
94 bool operator()(const Factor &LHS, const Factor &RHS) { in operator ()()
101 bool operator()(const Factor &LHS, const Factor &RHS) { in operator ()()
108 bool operator()(const Factor &LHS, const Factor &RHS) { in operator ()()
191 SmallVectorImpl<Factor> &Factors);
193 SmallVectorImpl<Factor> &Factors);
195 Value *RemoveFactorFromExpression(Value *V, Value *Factor);
1112 Value *Reassociate::RemoveFactorFromExpression(Value *V, Value *Factor) { in RemoveFactorFromExpression() argument
[all …]
DLoopStrengthReduce.cpp2418 if (const SCEVConstant *Factor = in CollectInterestingTypesAndFactors() local
2421 if (Factor->getValue()->getValue().getMinSignedBits() <= 64) in CollectInterestingTypesAndFactors()
2422 Factors.insert(Factor->getValue()->getValue().getSExtValue()); in CollectInterestingTypesAndFactors()
2423 } else if (const SCEVConstant *Factor = in CollectInterestingTypesAndFactors() local
2427 if (Factor->getValue()->getValue().getMinSignedBits() <= 64) in CollectInterestingTypesAndFactors()
2428 Factors.insert(Factor->getValue()->getValue().getSExtValue()); in CollectInterestingTypesAndFactors()
3508 int64_t Factor = *I; in GenerateICmpZeroScales() local
3511 if (Base.BaseOffset == INT64_MIN && Factor == -1) in GenerateICmpZeroScales()
3513 int64_t NewBaseOffset = (uint64_t)Base.BaseOffset * Factor; in GenerateICmpZeroScales()
3514 if (NewBaseOffset / Factor != Base.BaseOffset) in GenerateICmpZeroScales()
[all …]
/external/llvm/include/llvm/CodeGen/
DMachineTraceMetrics.h380 unsigned Factor = SchedModel.getLatencyFactor(); in getCycles() local
381 return (Scaled + Factor - 1) / Factor; in getCycles()
/external/libvpx/libvpx/vp8/encoder/
Dratectrl.c1137 double Factor = 0.99; in vp8_update_rate_correction_factors() local
1144 (int)(Factor * projected_size_based_on_q); in vp8_update_rate_correction_factors()
1145 Factor += factor_adjustment; in vp8_update_rate_correction_factors()
1147 if (Factor >= 0.999) in vp8_update_rate_correction_factors()
1148 Factor = 0.999; in vp8_update_rate_correction_factors()
1293 double Factor = 0.99; in vp8_regulate_q() local
1335 bits_per_mb_at_this_q = (int)(Factor * bits_per_mb_at_this_q); in vp8_regulate_q()
1336 Factor += factor_adjustment; in vp8_regulate_q()
1338 if (Factor >= 0.999) in vp8_regulate_q()
1339 Factor = 0.999; in vp8_regulate_q()
/external/eigen/Eigen/src/Core/
DVectorwiseOp.h424 … template<int Factor> const Replicate<ExpressionType,(IsVertical?Factor:1),(IsHorizontal?Factor:1)>
425 replicate(Index factor = Factor) const
427 return Replicate<ExpressionType,Direction==Vertical?Factor:1,Direction==Horizontal?Factor:1>
DReplicate.h39 Factor = (RowFactor==Dynamic || ColFactor==Dynamic) ? Dynamic : RowFactor*ColFactor
41 typedef typename nested<MatrixType,Factor>::type MatrixTypeNested;
/external/llvm/lib/Transforms/InstCombine/
DInstCombineAddSub.cpp466 Value *Factor = nullptr; in performFactorization() local
471 Factor = Opnd0_0; in performFactorization()
473 Factor = Opnd0_1; in performFactorization()
475 if (Factor) { in performFactorization()
476 AddSub0 = (Factor == Opnd0_0) ? Opnd0_1 : Opnd0_0; in performFactorization()
477 AddSub1 = (Factor == Opnd1_0) ? Opnd1_1 : Opnd1_0; in performFactorization()
480 Factor = Opnd0_1; in performFactorization()
485 if (!Factor) in performFactorization()
505 Value *RI = createFMul(Factor, NewAddSub); in performFactorization()
511 Value *RI = createFDiv(NewAddSub, Factor); in performFactorization()
/external/llvm/lib/CodeGen/
DMachineTraceMetrics.cpp811 unsigned Factor = MTM.SchedModel.getResourceFactor(K); in computeInstrDepths()
814 << PRDepths[K]/Factor << " ops x" << Factor << ")\n"; in computeInstrDepths()
1028 unsigned Factor = MTM.SchedModel.getResourceFactor(K); in computeInstrHeights()
1031 << PRHeights[K]/Factor << " ops x" << Factor << ")\n"; in computeInstrHeights()
DMachineScheduler.cpp1633 unsigned Factor = SchedModel->getResourceFactor(PIdx); in init() local
1634 RemainingCounts[PIdx] += (Factor * PI->Cycles); in init()
1869 unsigned Factor = SchedModel->getResourceFactor(PIdx); in countResource() local
1870 unsigned Count = Factor * Cycles; in countResource()
1872 << " +" << Cycles << "x" << Factor << "u\n"); in countResource()
/external/llvm/lib/Analysis/
DScalarEvolutionExpander.cpp210 const SCEV *Factor, ScalarEvolution &SE, in FactorOutConstant() argument
213 if (Factor->isOne()) in FactorOutConstant()
217 if (S == Factor) { in FactorOutConstant()
228 if (const SCEVConstant *FC = dyn_cast<SCEVConstant>(Factor)) { in FactorOutConstant()
253 const SCEVConstant *FC = cast<SCEVConstant>(Factor); in FactorOutConstant()
268 if (!FactorOutConstant(Step, StepRem, Factor, SE, DL)) in FactorOutConstant()
273 if (!FactorOutConstant(Start, Remainder, Factor, SE, DL)) in FactorOutConstant()
DScalarEvolution.cpp2768 APInt Factor = gcd(LHSCst, RHSCst); in getUDivExactExpr() local
2769 if (!Factor.isIntN(1)) { in getUDivExactExpr()
2771 getConstant(LHSCst->getValue()->getValue().udiv(Factor))); in getUDivExactExpr()
2773 getConstant(RHSCst->getValue()->getValue().udiv(Factor))); in getUDivExactExpr()
/external/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp4461 VectorizationFactor Factor = { 1U, 0U }; in selectVectorizationFactor() local
4468 return Factor; in selectVectorizationFactor()
4475 return Factor; in selectVectorizationFactor()
4512 return Factor; in selectVectorizationFactor()
4530 return Factor; in selectVectorizationFactor()
4539 Factor.Width = UserVF; in selectVectorizationFactor()
4540 return Factor; in selectVectorizationFactor()
4574 Factor.Width = Width; in selectVectorizationFactor()
4575 Factor.Cost = Width * Cost; in selectVectorizationFactor()
4576 return Factor; in selectVectorizationFactor()
/external/jpeg/
Dwizard.doc89 Sampling Factor Adjustment
/external/llvm/lib/IR/
DConstantFold.cpp2180 ConstantInt *Factor = ConstantInt::get(CI->getType(), NumElements); in ConstantFoldGetElementPtrImpl() local
2181 NewIdxs[i] = ConstantExpr::getSRem(CI, Factor); in ConstantFoldGetElementPtrImpl()
2184 Constant *Div = ConstantExpr::getSDiv(CI, Factor); in ConstantFoldGetElementPtrImpl()
/external/mesa3d/docs/
DMESA_texture_array.spec274 -- Section 3.8.8 "Texture Minification" in the section "Scale Factor and Level of Detail"
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp277 unsigned Factor = NumParts / NumIntermediates; in getCopyFromPartsVector() local
279 Ops[i] = getCopyFromParts(DAG, DL, &Parts[i * Factor], Factor, in getCopyFromPartsVector()
574 unsigned Factor = NumParts / NumIntermediates; in getCopyToPartsVector() local
576 getCopyToParts(DAG, DL, Ops[i], &Parts[i*Factor], Factor, PartVT, V); in getCopyToPartsVector()
DSelectionDAG.cpp3384 unsigned Factor = in getNode() local
3387 N1.getOperand(N2C->getZExtValue() / Factor), in getNode()
3388 getConstant(N2C->getZExtValue() % Factor, in getNode()
/external/blktrace/btreplay/doc/
Dbtreplay.tex501 Factor}
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
DBaseRecognizer.as122 /** Factor out what to do upon token mismatch so tree parsers can behave
/external/clang/lib/Driver/
DTools.cpp2535 unsigned Build = 0, Factor = 1; in getMSCompatibilityVersion() local
2536 for ( ; Version > 10000; Version = Version / 10, Factor = Factor * 10) in getMSCompatibilityVersion()
2537 Build = Build + (Version % 10) * Factor; in getMSCompatibilityVersion()
/external/bison/
DChangeLog2015 different places. Factor, a bit.
2550 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Factor.
3734 the quotes to the translators. Use shorter messages. Factor similar
/external/selinux/policycoreutils/
DChangeLog422 * Factor out restoring logic from setfiles.c into restore.c
/external/libexif/po/
Den_AU.po5300 msgid "Sharpness Factor"
5301 msgstr "Sharpness Factor"
Den_GB.po5300 msgid "Sharpness Factor"
5301 msgstr "Sharpness Factor"
/external/bison/data/m4sugar/
Dm4sugar.m41020 # Uses _m4_defn for speed, and avoid dnl in the macro body. Factor

123