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

12

/external/llvm/include/llvm/CodeGen/
H A DMachineTraceMetrics.h373 unsigned Factor = SchedModel.getLatencyFactor(); local
374 return (Scaled + Factor - 1) / Factor;
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp79 struct Factor { struct in namespace:__anon21683
83 Factor(Value *Base, unsigned Power) : Base(Base), Power(Power) {} function in struct:__anon21683::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
998 RemoveFactorFromExpression(Value *V, Value *Factor) argument
[all...]
H A DLoopStrengthReduce.cpp2342 if (const SCEVConstant *Factor =
2345 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2346 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2347 } else if (const SCEVConstant *Factor =
2351 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2352 Factors.insert(Factor->getValue()->getValue().getSExtValue());
3370 int64_t Factor = *I; local
3373 if (Base.BaseOffset == INT64_MIN && Factor == -1)
3375 int64_t NewBaseOffset = (uint64_t)Base.BaseOffset * Factor;
3376 if (NewBaseOffset / Factor !
3441 int64_t Factor = *I; local
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Dratectrl.c1130 double Factor = 0.99; local
1137 (int)(Factor * projected_size_based_on_q);
1138 Factor += factor_adjustment;
1140 if (Factor >= 0.999)
1141 Factor = 0.999;
1287 double Factor = 0.99; local
1301 double Factor = (double)target_bits_per_mb/(double)bits_per_mb_at_this_q;
1304 Factor = Factor/1.2683;
1306 Oq = pow( Factor, (1.
[all...]
/external/eigen/Eigen/src/Core/
H A DVectorwiseOp.h397 template<int Factor> const Replicate<ExpressionType,(IsVertical?Factor:1),(IsHorizontal?Factor:1)>
398 replicate(Index factor = Factor) const
400 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::__anon17064
41 typedef typename nested<MatrixType,Factor>::type MatrixTypeNested;
/external/libffi/src/powerpc/
H A Ddarwin.S198 .byte 0x1 ; uleb128 0x1; CIE Code Alignment Factor
199 .byte 0x7c ; sleb128 -4; CIE Data Alignment Factor
H A Ddarwin_closure.S257 .byte 0x1 ; uleb128 0x1; CIE Code Alignment Factor
258 .byte 0x7c ; sleb128 -4; CIE Data Alignment Factor
H A Dlinux64.S149 .uleb128 0x1 # CIE Code Alignment Factor
150 .sleb128 -8 # CIE Data Alignment Factor
H A Dlinux64_closure.S206 .uleb128 0x1 # CIE Code Alignment Factor
207 .sleb128 -8 # CIE Data Alignment Factor
H A Dppc_closure.S286 .uleb128 0x1 # CIE Code Alignment Factor
287 .sleb128 -4 # CIE Data Alignment Factor
/external/libffi/src/s390/
H A Dsysv.S162 .uleb128 0x1 # CIE Code Alignment Factor
163 .sleb128 -4 # CIE Data Alignment Factor
361 .uleb128 0x1 # CIE Code Alignment Factor
362 .sleb128 -8 # CIE Data Alignment Factor
/external/libffi/src/alpha/
H A Dosf.S309 .byte 0x1 # uleb128 0x1; CIE Code Alignment Factor
310 .byte 0x78 # sleb128 -8; CIE Data Alignment Factor
/external/libffi/src/sparc/
H A Dv8.S209 .byte 0x1 ! uleb128 0x1; CIE Code Alignment Factor
210 .byte 0x80-WS ! sleb128 -WS; CIE Data Alignment Factor
H A Dv9.S243 .byte 0x1 ! uleb128 0x1; CIE Code Alignment Factor
244 .byte 0x78 ! sleb128 -8; CIE Data Alignment Factor
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp459 // Input Instr I Factor AddSub0 AddSub1
464 Value *Factor = 0; local
469 Factor = Opnd0_0;
471 Factor = Opnd0_1;
473 if (Factor) {
474 AddSub0 = (Factor == Opnd0_0) ? Opnd0_1 : Opnd0_0;
475 AddSub1 = (Factor == Opnd1_0) ? Opnd1_1 : Opnd1_0;
478 Factor = Opnd0_1;
483 if (!Factor)
497 return createFMul(Factor, NewAddSu
[all...]
/external/llvm/lib/CodeGen/
H A DMachineTraceMetrics.cpp820 unsigned Factor = MTM.SchedModel.getResourceFactor(K);
823 << PRDepths[K]/Factor << " ops x" << Factor << ")\n";
1040 unsigned Factor = MTM.SchedModel.getResourceFactor(K);
1043 << PRHeights[K]/Factor << " ops x" << Factor << ")\n";
H A DMachineScheduler.cpp1470 unsigned Factor = SchedModel->getResourceFactor(PIdx); local
1471 RemainingCounts[PIdx] += (Factor * PI->Cycles);
1767 unsigned Factor = SchedModel->getResourceFactor(PIdx); local
1768 unsigned Count = Factor * Cycles;
1770 << " +" << Cycles << "x" << Factor << "u\n"); local
/external/libffi/src/pa/
H A Dhpux32.S312 .uleb128 0x1 ;# CIE Code Alignment Factor
313 .sleb128 4 ;# CIE Data Alignment Factor
H A Dlinux.S301 .uleb128 0x1 ;# CIE Code Alignment Factor
302 .sleb128 4 ;# CIE Data Alignment Factor
/external/libffi/src/mips/
H A Do32.S315 .uleb128 0x1 # CIE Code Alignment Factor
316 .sleb128 4 # CIE Data Alignment Factor
/external/llvm/lib/Analysis/
H A DScalarEvolutionExpander.cpp204 /// FactorOutConstant - Test if S is divisible by Factor, using signed
205 /// division. If so, update S with Factor divided out and return true.
213 const SCEV *Factor,
217 if (Factor->isOne())
221 if (S == Factor) {
232 if (const SCEVConstant *FC = dyn_cast<SCEVConstant>(Factor)) {
259 const SCEVConstant *FC = cast<SCEVConstant>(Factor);
270 // Without DataLayout, check if Factor can be factored out of any of the
275 if (FactorOutConstant(SOp, Remainder, Factor, SE, TD) &&
290 if (!FactorOutConstant(Step, StepRem, Factor, S
211 FactorOutConstant(const SCEV *&S, const SCEV *&Remainder, const SCEV *Factor, ScalarEvolution &SE, const DataLayout *TD) argument
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp922 DEBUG(dbgs() << "LV: Unroll Factor is " << UF << "\n");
4066 VectorizationFactor Factor = { 1U, 0U };
4069 return Factor;
4102 return Factor;
4115 return Factor;
4123 Factor.Width = UserVF;
4124 return Factor;
4144 Factor.Width = Width;
4145 Factor.Cost = Width * Cost;
4146 return Factor;
[all...]
/external/llvm/lib/IR/
H A DConstantFold.cpp2020 ConstantInt *Factor = ConstantInt::get(CI->getType(), local
2022 NewIdxs[i] = ConstantExpr::getSRem(CI, Factor);
2025 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"

Completed in 342 milliseconds

12