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

/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp79 struct Factor { struct in namespace:__anon26317
83 Factor(Value *Base, unsigned Power) : Base(Base), Power(Power) {} function in struct:__anon26317::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
997 RemoveFactorFromExpression(Value *V, Value *Factor) argument
[all...]
H A DLoopStrengthReduce.cpp2423 if (const SCEVConstant *Factor =
2426 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2427 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2428 } else if (const SCEVConstant *Factor =
2432 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2433 Factors.insert(Factor->getValue()->getValue().getSExtValue());
3511 int64_t Factor = *I; local
3514 if (Base.BaseOffset == INT64_MIN && Factor == -1)
3516 int64_t NewBaseOffset = (uint64_t)Base.BaseOffset * Factor;
3517 if (NewBaseOffset / Factor !
3598 int64_t Factor = *I; local
[all...]
/external/llvm/include/llvm/CodeGen/
H A DMachineTraceMetrics.h373 unsigned Factor = SchedModel.getLatencyFactor(); local
374 return (Scaled + Factor - 1) / Factor;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dratectrl.c1137 double Factor = 0.99; local
1144 (int)(Factor * projected_size_based_on_q);
1145 Factor += factor_adjustment;
1147 if (Factor >= 0.999)
1148 Factor = 0.999;
1293 double Factor = 0.99; local
1307 double Factor = (double)target_bits_per_mb/(double)bits_per_mb_at_this_q;
1310 Factor = Factor/1.2683;
1312 Oq = pow( Factor, (1.
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Dratectrl.c1137 double Factor = 0.99; local
1144 (int)(Factor * projected_size_based_on_q);
1145 Factor += factor_adjustment;
1147 if (Factor >= 0.999)
1148 Factor = 0.999;
1293 double Factor = 0.99; local
1307 double Factor = (double)target_bits_per_mb/(double)bits_per_mb_at_this_q;
1310 Factor = Factor/1.2683;
1312 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::__anon20686
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.cpp819 unsigned Factor = MTM.SchedModel.getResourceFactor(K);
822 << PRDepths[K]/Factor << " ops x" << Factor << ")\n";
1036 unsigned Factor = MTM.SchedModel.getResourceFactor(K);
1039 << PRHeights[K]/Factor << " ops x" << Factor << ")\n";
H A DMachineScheduler.cpp1611 unsigned Factor = SchedModel->getResourceFactor(PIdx); local
1612 RemainingCounts[PIdx] += (Factor * PI->Cycles);
1847 unsigned Factor = SchedModel->getResourceFactor(PIdx); local
1848 unsigned Count = Factor * Cycles;
1850 << " +" << Cycles << "x" << Factor << "u\n"); local
/external/llvm/lib/Analysis/
H A DScalarEvolutionExpander.cpp200 /// FactorOutConstant - Test if S is divisible by Factor, using signed
201 /// division. If so, update S with Factor divided out and return true.
209 const SCEV *Factor,
213 if (Factor->isOne())
217 if (S == Factor) {
228 if (const SCEVConstant *FC = dyn_cast<SCEVConstant>(Factor)) {
255 const SCEVConstant *FC = cast<SCEVConstant>(Factor);
266 // Without DataLayout, check if Factor can be factored out of any of the
271 if (FactorOutConstant(SOp, Remainder, Factor, SE, DL) &&
286 if (!FactorOutConstant(Step, StepRem, Factor, S
207 FactorOutConstant(const SCEV *&S, const SCEV *&Remainder, const SCEV *Factor, ScalarEvolution &SE, const DataLayout *DL) argument
[all...]
H A DScalarEvolution.cpp2315 APInt Factor = gcd(LHSCst, RHSCst);
2316 if (!Factor.isIntN(1)) {
2318 getConstant(LHSCst->getValue()->getValue().udiv(Factor)));
2320 getConstant(RHSCst->getValue()->getValue().udiv(Factor)));
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp1296 DEBUG(dbgs() << "LV: Unroll Factor is " << UF << '\n');
5169 VectorizationFactor Factor = { 1U, 0U };
5172 return Factor;
5177 return Factor;
5211 return Factor;
5224 return Factor;
5232 Factor.Width = UserVF;
5233 return Factor;
5266 Factor.Width = Width;
5267 Factor
[all...]
/external/llvm/lib/IR/
H A DConstantFold.cpp2110 ConstantInt *Factor = ConstantInt::get(CI->getType(), NumElements); local
2111 NewIdxs[i] = ConstantExpr::getSRem(CI, Factor);
2114 Constant *Div = ConstantExpr::getSDiv(CI, Factor);
/external/chromium_org/third_party/mesa/src/docs/
H A DMESA_texture_array.spec274 -- Section 3.8.8 "Texture Minification" in the section "Scale Factor and Level of Detail"
/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.cpp272 unsigned Factor = NumParts / NumIntermediates; local
274 Ops[i] = getCopyFromParts(DAG, DL, &Parts[i * Factor], Factor,
568 unsigned Factor = NumParts / NumIntermediates; local
570 getCopyToParts(DAG, DL, Ops[i], &Parts[i*Factor], Factor, PartVT, V);
H A DSelectionDAG.cpp2780 return Operand; // Factor, merge or concat of one node? No need.
3277 unsigned Factor = local
3280 N1.getOperand(N2C->getZExtValue() / Factor),
3281 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/openssl/crypto/bn/asm/
H A Dia64-mont.pl236 // 7*(n+7) ticks on Itanium (the one codenamed Merced). Factor of 7
/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.cpp83 unsigned Factor = VT.getSizeInBits()/vectorWidth; local
85 VT.getVectorNumElements()/Factor);

Completed in 886 milliseconds