Searched defs:Factor (Results 1 - 8 of 8) sorted by relevance

/external/libvpx/vp8/encoder/
H A Dratectrl.c1207 double Factor = 0.99; local
1214 (int)(Factor * projected_size_based_on_q);
1215 Factor += factor_adjustment;
1217 if (Factor >= 0.999)
1218 Factor = 0.999;
1370 double Factor = 0.99; local
1381 double Factor = (double)target_bits_per_mb/(double)bits_per_mb_at_this_q;
1384 Factor = Factor/1.2683;
1386 Oq = pow( Factor, (1.
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp103 Value *RemoveFactorFromExpression(Value *V, Value *Factor);
572 /// multiplication sequence, and if this sequence contains a multiply by Factor,
573 /// remove Factor from the tree and return the new tree.
574 Value *Reassociate::RemoveFactorFromExpression(Value *V, Value *Factor) { argument
584 if (Factors[i].Op == Factor) {
591 if (ConstantInt *FC1 = dyn_cast<ConstantInt>(Factor))
805 Value *Factor = Factors[i];
806 if (!Duplicates.insert(Factor)) continue;
808 unsigned Occ = ++FactorOccurrences[Factor];
809 if (Occ > MaxOcc) { MaxOcc = Occ; MaxOccVal = Factor; }
[all...]
H A DLoopStrengthReduce.cpp2215 if (const SCEVConstant *Factor =
2218 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2219 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2220 } else if (const SCEVConstant *Factor =
2224 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2225 Factors.insert(Factor->getValue()->getValue().getSExtValue());
3211 int64_t Factor = *I; local
3214 if (Base.AM.BaseOffs == INT64_MIN && Factor == -1)
3216 int64_t NewBaseOffs = (uint64_t)Base.AM.BaseOffs * Factor;
3217 if (NewBaseOffs / Factor !
3282 int64_t Factor = *I; local
[all...]
/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 TargetData, 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 TargetData *TD) argument
[all...]
/external/llvm/lib/VMCore/
H A DConstantFold.cpp2012 ConstantInt *Factor = ConstantInt::get(CI->getType(), local
2014 NewIdxs[i] = ConstantExpr::getSRem(CI, Factor);
2017 Constant *Div = ConstantExpr::getSDiv(CI, Factor);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp2468 return Operand; // Factor, merge or concat of one node? No need.
2848 unsigned Factor = local
2851 N1.getOperand(N2C->getZExtValue() / Factor),
2852 getConstant(N2C->getZExtValue() % Factor,
H A DSelectionDAGBuilder.cpp250 unsigned Factor = NumParts / NumIntermediates; local
252 Ops[i] = getCopyFromParts(DAG, DL, &Parts[i * Factor], Factor,
537 unsigned Factor = NumParts / NumIntermediates; local
539 getCopyToParts(DAG, DL, Ops[i], &Parts[i*Factor], Factor, PartVT);
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp73 int Factor = VT.getSizeInBits()/128; local
75 VT.getVectorNumElements()/Factor);

Completed in 293 milliseconds