/external/llvm/lib/Transforms/Scalar/ |
D | Reassociate.cpp | 79 struct Factor { struct 83 Factor(Value *Base, unsigned Power) : Base(Base), Power(Power) {} in Factor() argument 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 ()() 141 SmallVectorImpl<Factor> &Factors); 143 SmallVectorImpl<Factor> &Factors); 145 Value *RemoveFactorFromExpression(Value *V, Value *Factor); 919 Value *Reassociate::RemoveFactorFromExpression(Value *V, Value *Factor) { in RemoveFactorFromExpression() argument [all …]
|
D | LoopStrengthReduce.cpp | 2259 if (const SCEVConstant *Factor = in CollectInterestingTypesAndFactors() local 2262 if (Factor->getValue()->getValue().getMinSignedBits() <= 64) in CollectInterestingTypesAndFactors() 2263 Factors.insert(Factor->getValue()->getValue().getSExtValue()); in CollectInterestingTypesAndFactors() 2264 } else if (const SCEVConstant *Factor = in CollectInterestingTypesAndFactors() local 2268 if (Factor->getValue()->getValue().getMinSignedBits() <= 64) in CollectInterestingTypesAndFactors() 2269 Factors.insert(Factor->getValue()->getValue().getSExtValue()); in CollectInterestingTypesAndFactors() 3286 int64_t Factor = *I; in GenerateICmpZeroScales() local 3289 if (Base.BaseOffset == INT64_MIN && Factor == -1) in GenerateICmpZeroScales() 3291 int64_t NewBaseOffset = (uint64_t)Base.BaseOffset * Factor; in GenerateICmpZeroScales() 3292 if (NewBaseOffset / Factor != Base.BaseOffset) in GenerateICmpZeroScales() [all …]
|
/external/libvpx/libvpx/vp8/encoder/ |
D | ratectrl.c | 1128 double Factor = 0.99; in vp8_update_rate_correction_factors() local 1135 (int)(Factor * projected_size_based_on_q); in vp8_update_rate_correction_factors() 1136 Factor += factor_adjustment; in vp8_update_rate_correction_factors() 1138 if (Factor >= 0.999) in vp8_update_rate_correction_factors() 1139 Factor = 0.999; in vp8_update_rate_correction_factors() 1279 double Factor = 0.99; in vp8_regulate_q() local 1318 bits_per_mb_at_this_q = (int)(Factor * bits_per_mb_at_this_q); in vp8_regulate_q() 1319 Factor += factor_adjustment; in vp8_regulate_q() 1321 if (Factor >= 0.999) in vp8_regulate_q() 1322 Factor = 0.999; in vp8_regulate_q()
|
/external/eigen/Eigen/src/Core/ |
D | VectorwiseOp.h | 397 … 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>
|
D | Replicate.h | 39 Factor = (RowFactor==Dynamic || ColFactor==Dynamic) ? Dynamic : RowFactor*ColFactor 41 typedef typename nested<MatrixType,Factor>::type MatrixTypeNested;
|
/external/libffi/src/powerpc/ |
D | linux64.S | 149 .uleb128 0x1 # CIE Code Alignment Factor 150 .sleb128 -8 # CIE Data Alignment Factor
|
D | darwin.S | 198 .byte 0x1 ; uleb128 0x1; CIE Code Alignment Factor 199 .byte 0x7c ; sleb128 -4; CIE Data Alignment Factor
|
D | darwin_closure.S | 257 .byte 0x1 ; uleb128 0x1; CIE Code Alignment Factor 258 .byte 0x7c ; sleb128 -4; CIE Data Alignment Factor
|
D | linux64_closure.S | 206 .uleb128 0x1 # CIE Code Alignment Factor 207 .sleb128 -8 # CIE Data Alignment Factor
|
D | ppc_closure.S | 286 .uleb128 0x1 # CIE Code Alignment Factor 287 .sleb128 -4 # CIE Data Alignment Factor
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineAddSub.cpp | 428 Value *Factor = 0; in performFactorization() local 433 Factor = Opnd0_0; in performFactorization() 435 Factor = Opnd0_1; in performFactorization() 437 if (Factor) { in performFactorization() 438 AddSub0 = (Factor == Opnd0_0) ? Opnd0_1 : Opnd0_0; in performFactorization() 439 AddSub1 = (Factor == Opnd1_0) ? Opnd1_1 : Opnd1_0; in performFactorization() 442 Factor = Opnd0_1; in performFactorization() 447 if (!Factor) in performFactorization() 461 return createFMul(Factor, NewAddSub); in performFactorization() 463 return createFDiv(NewAddSub, Factor); in performFactorization()
|
/external/libffi/src/s390/ |
D | sysv.S | 162 .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/ |
D | osf.S | 309 .byte 0x1 # uleb128 0x1; CIE Code Alignment Factor 310 .byte 0x78 # sleb128 -8; CIE Data Alignment Factor
|
/external/libffi/src/sparc/ |
D | v8.S | 209 .byte 0x1 ! uleb128 0x1; CIE Code Alignment Factor 210 .byte 0x80-WS ! sleb128 -WS; CIE Data Alignment Factor
|
D | v9.S | 243 .byte 0x1 ! uleb128 0x1; CIE Code Alignment Factor 244 .byte 0x78 ! sleb128 -8; CIE Data Alignment Factor
|
/external/libffi/src/pa/ |
D | linux.S | 301 .uleb128 0x1 ;# CIE Code Alignment Factor 302 .sleb128 4 ;# CIE Data Alignment Factor
|
D | hpux32.S | 312 .uleb128 0x1 ;# CIE Code Alignment Factor 313 .sleb128 4 ;# CIE Data Alignment Factor
|
/external/llvm/lib/Analysis/ |
D | ScalarEvolutionExpander.cpp | 213 const SCEV *Factor, in FactorOutConstant() argument 217 if (Factor->isOne()) in FactorOutConstant() 221 if (S == Factor) { in FactorOutConstant() 232 if (const SCEVConstant *FC = dyn_cast<SCEVConstant>(Factor)) { in FactorOutConstant() 259 const SCEVConstant *FC = cast<SCEVConstant>(Factor); in FactorOutConstant() 275 if (FactorOutConstant(SOp, Remainder, Factor, SE, TD) && in FactorOutConstant() 290 if (!FactorOutConstant(Step, StepRem, Factor, SE, TD)) in FactorOutConstant() 295 if (!FactorOutConstant(Start, Remainder, Factor, SE, TD)) in FactorOutConstant()
|
/external/libffi/src/mips/ |
D | o32.S | 315 .uleb128 0x1 # CIE Code Alignment Factor 316 .sleb128 4 # CIE Data Alignment Factor
|
/external/llvm/lib/Transforms/Vectorize/ |
D | LoopVectorize.cpp | 2943 VectorizationFactor Factor = { 1U, 0U }; in selectVectorizationFactor() local 2946 return Factor; in selectVectorizationFactor() 2974 return Factor; in selectVectorizationFactor() 2987 return Factor; in selectVectorizationFactor() 2995 Factor.Width = UserVF; in selectVectorizationFactor() 2996 return Factor; in selectVectorizationFactor() 3016 Factor.Width = Width; in selectVectorizationFactor() 3017 Factor.Cost = Width * Cost; in selectVectorizationFactor() 3018 return Factor; in selectVectorizationFactor()
|
/external/llvm/lib/CodeGen/ |
D | MachineScheduler.cpp | 1214 unsigned Factor = SchedModel->getResourceFactor(PIdx); in init() local 1215 RemainingCounts[PIdx] += (Factor * PI->Cycles); in init() 1413 unsigned Factor = SchedModel->getResourceFactor(PIdx); in countResource() local 1415 << " +(" << Cycles << "x" << Factor in countResource() 1418 unsigned Count = Factor * Cycles; in countResource()
|
/external/webkit/Source/WebKit/haiku/ |
D | ChangeLog | 625 Factor DocumentWriter out of FrameLoader 660 Factor DocumentWriter out of FrameLoader 856 Factor PolicyChecker out of FrameLoader
|
/external/llvm/lib/IR/ |
D | ConstantFold.cpp | 2019 ConstantInt *Factor = ConstantInt::get(CI->getType(), in ConstantFoldGetElementPtrImpl() local 2021 NewIdxs[i] = ConstantExpr::getSRem(CI, Factor); in ConstantFoldGetElementPtrImpl() 2024 Constant *Div = ConstantExpr::getSDiv(CI, Factor); in ConstantFoldGetElementPtrImpl()
|
/external/jpeg/ |
D | wizard.doc | 89 Sampling Factor Adjustment
|
/external/qemu/distrib/jpeg-6b/ |
D | wizard.doc | 89 Sampling Factor Adjustment
|