Searched refs:Factor (Results 1 - 21 of 21) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp79 struct Factor { struct in namespace:__anon11067
83 Factor(Value *Base, unsigned Power) : Base(Base), Power(Power) {} function in struct:__anon11067::Factor
87 bool operator()(const Factor &LHS, const Factor &RHS) {
94 bool operator()(const Factor &LHS, const Factor &RHS) {
101 bool operator()(const Factor &LHS, const Factor &RHS) {
108 bool operator()(const Factor &LHS, const Factor
1112 RemoveFactorFromExpression(Value *V, Value *Factor) argument
[all...]
H A DLoopStrengthReduce.cpp2418 if (const SCEVConstant *Factor =
2421 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2422 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2423 } else if (const SCEVConstant *Factor =
2427 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2428 Factors.insert(Factor->getValue()->getValue().getSExtValue());
3508 int64_t Factor = *I; local
3511 if (Base.BaseOffset == INT64_MIN && Factor == -1)
3513 int64_t NewBaseOffset = (uint64_t)Base.BaseOffset * Factor;
3514 if (NewBaseOffset / Factor !
3595 int64_t Factor = *I; local
[all...]
/external/llvm/include/llvm/CodeGen/
H A DMachineTraceMetrics.h380 unsigned Factor = SchedModel.getLatencyFactor(); local
381 return (Scaled + Factor - 1) / Factor;
/external/libvpx/libvpx/vp8/encoder/
H A Dratectrl.c1143 double Factor = 0.99; local
1150 (int)(Factor * projected_size_based_on_q);
1151 Factor += factor_adjustment;
1153 if (Factor >= 0.999)
1154 Factor = 0.999;
1304 double Factor = 0.99; local
1318 double Factor = (double)target_bits_per_mb/(double)bits_per_mb_at_this_q;
1321 Factor = Factor/1.2683;
1323 Oq = pow( Factor, (1.
[all...]
/external/eigen/Eigen/src/Core/
H A 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>
H A DReplicate.h39 Factor = (RowFactor==Dynamic || ColFactor==Dynamic) ? Dynamic : RowFactor*ColFactor enumerator in enum:Eigen::internal::traits::__anon4073
41 typedef typename nested<MatrixType,Factor>::type MatrixTypeNested;
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp461 // Input Instr I Factor AddSub0 AddSub1
466 Value *Factor = nullptr; local
471 Factor = Opnd0_0;
473 Factor = Opnd0_1;
475 if (Factor) {
476 AddSub0 = (Factor == Opnd0_0) ? Opnd0_1 : Opnd0_0;
477 AddSub1 = (Factor == Opnd1_0) ? Opnd1_1 : Opnd1_0;
480 Factor = Opnd0_1;
485 if (!Factor)
505 Value *RI = createFMul(Factor, NewAddSu
[all...]
/external/llvm/lib/CodeGen/
H A DMachineTraceMetrics.cpp811 unsigned Factor = MTM.SchedModel.getResourceFactor(K);
814 << PRDepths[K]/Factor << " ops x" << Factor << ")\n";
1028 unsigned Factor = MTM.SchedModel.getResourceFactor(K);
1031 << PRHeights[K]/Factor << " ops x" << Factor << ")\n";
H A DMachineScheduler.cpp1633 unsigned Factor = SchedModel->getResourceFactor(PIdx); local
1634 RemainingCounts[PIdx] += (Factor * PI->Cycles);
1869 unsigned Factor = SchedModel->getResourceFactor(PIdx); local
1870 unsigned Count = Factor * Cycles;
1872 << " +" << Cycles << "x" << Factor << "u\n"); local
/external/llvm/lib/Analysis/
H A DScalarEvolutionExpander.cpp202 /// FactorOutConstant - Test if S is divisible by Factor, using signed
203 /// division. If so, update S with Factor divided out and return true.
210 const SCEV *Factor, ScalarEvolution &SE,
213 if (Factor->isOne())
217 if (S == Factor) {
228 if (const SCEVConstant *FC = dyn_cast<SCEVConstant>(Factor)) {
253 const SCEVConstant *FC = cast<SCEVConstant>(Factor);
268 if (!FactorOutConstant(Step, StepRem, Factor, SE, DL))
273 if (!FactorOutConstant(Start, Remainder, Factor, SE, DL))
209 FactorOutConstant(const SCEV *&S, const SCEV *&Remainder, const SCEV *Factor, ScalarEvolution &SE, const DataLayout &DL) argument
H A DScalarEvolution.cpp2768 APInt Factor = gcd(LHSCst, RHSCst);
2769 if (!Factor.isIntN(1)) {
2771 getConstant(LHSCst->getValue()->getValue().udiv(Factor)));
2773 getConstant(RHSCst->getValue()->getValue().udiv(Factor)));
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp1476 DEBUG(dbgs() << "LV: Unroll Factor is " << UF << '\n');
4461 VectorizationFactor Factor = { 1U, 0U }; local
4468 return Factor;
4475 return Factor;
4512 return Factor;
4530 return Factor;
4539 Factor.Width = UserVF;
4540 return Factor;
4574 Factor.Width = Width;
4575 Factor
[all...]
/external/llvm/lib/IR/
H A DConstantFold.cpp2180 ConstantInt *Factor = ConstantInt::get(CI->getType(), NumElements); local
2181 NewIdxs[i] = ConstantExpr::getSRem(CI, Factor);
2184 Constant *Div = ConstantExpr::getSDiv(CI, Factor);
/external/mesa3d/docs/
H A DMESA_texture_array.spec274 -- Section 3.8.8 "Texture Minification" in the section "Scale Factor and Level of Detail"
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp277 unsigned Factor = NumParts / NumIntermediates; local
279 Ops[i] = getCopyFromParts(DAG, DL, &Parts[i * Factor], Factor,
574 unsigned Factor = NumParts / NumIntermediates; local
576 getCopyToParts(DAG, DL, Ops[i], &Parts[i*Factor], Factor, PartVT, V);
H A DSelectionDAG.cpp2890 return Operand; // Factor, merge or concat of one node? No need.
3384 unsigned Factor = local
3387 N1.getOperand(N2C->getZExtValue() / Factor),
3388 getConstant(N2C->getZExtValue() % Factor,
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBaseRecognizer.as122 /** Factor out what to do upon token mismatch so tree parsers can behave
/external/blktrace/btreplay/doc/
H A Dbtreplay.tex501 Factor}
/external/clang/lib/Driver/
H A DTools.cpp646 // FIXME: Factor out an ARM class so we can cache the arch somewhere.
2535 unsigned Build = 0, Factor = 1; local
2536 for ( ; Version > 10000; Version = Version / 10, Factor = Factor * 10)
2537 Build = Build + (Version % 10) * Factor;
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas2017 /// Factor out what to do upon token mismatch so tree parsers can behave
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp3997 unsigned Factor = VT.getSizeInBits()/vectorWidth; local
3999 VT.getVectorNumElements()/Factor);

Completed in 3597 milliseconds