Searched defs:Coeff (Results 1 - 6 of 6) sorted by relevance

/external/aac/libAACdec/src/
H A Daacdec_tns.h105 SCHAR Coeff[TNS_MAXIMUM_ORDER]; member in struct:__anon24
/external/skia/include/core/
H A DSkXfermode.h45 enum Coeff { enum in class:SkXfermode
158 * If the specified mode can be represented by a pair of Coeff, then return
163 static bool ModeAsCoeff(Mode mode, Coeff* src, Coeff* dst);
/external/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h352 const SCEV *Coeff; member in struct:llvm::DependenceAnalysis::CoefficientInfo
637 bool strongSIVtest(const SCEV *Coeff,
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp1059 const SCEV *Coeff = BinomialCoefficient(It, i, SE, getType()); local
1060 if (isa<SCEVCouldNotCompute>(Coeff))
1061 return Coeff;
1063 Result = SE.getAddExpr(Result, SE.getMulExpr(getOperand(i), Coeff));
2555 uint64_t Coeff;
2557 Coeff = umul_ov(Coeff1, Coeff2, Overflow);
2559 Coeff = Coeff1*Coeff2;
2560 const SCEV *CoeffTerm = getConstant(Ty, Coeff);
H A DDependenceAnalysis.cpp1026 bool DependenceAnalysis::strongSIVtest(const SCEV *Coeff, argument
1034 DEBUG(dbgs() << "\t Coeff = " << *Coeff);
1035 DEBUG(dbgs() << ", " << *Coeff->getType() << "\n");
1055 SE->isKnownNonNegative(Coeff) ? Coeff : SE->getNegativeSCEV(Coeff);
1066 if (isa<SCEVConstant>(Delta) && isa<SCEVConstant>(Coeff)) {
1068 APInt ConstCoeff = cast<SCEVConstant>(Coeff)->getValue()->getValue();
1074 // Make sure Coeff divide
1165 weakCrossingSIVtest(const SCEV *Coeff, const SCEV *SrcConst, const SCEV *DstConst, const Loop *CurLoop, unsigned Level, FullDependence &Result, Constraint &NewConstraint, const SCEV *&SplitIter) const argument
2252 const SCEV *Coeff = AddRec->getStepRecurrence(*SE); local
2273 const SCEV *Coeff = AddRec->getStepRecurrence(*SE); local
2353 const SCEV *Coeff = AddRec->getStepRecurrence(*SE); local
2371 const SCEV *Coeff = AddRec->getStepRecurrence(*SE); local
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp120 const FAddendCoef &getCoef(void) const { return Coeff; }
123 bool isZero() const { return Coeff.isZero(); }
125 void set(short Coefficient, Value *V) { Coeff.set(Coefficient), Val = V; }
127 { Coeff.set(Coefficient); Val = V; }
129 { Coeff.set(Coefficient->getValueAPF()); Val = V; }
131 void negate() { Coeff.negate(); }
143 Coeff += T.Coeff;
147 void Scale(const FAddendCoef& ScaleAmt) { Coeff *= ScaleAmt; }
149 // This addend has the value of "Coeff * Va
151 FAddendCoef Coeff; member in class:__anon10981::FAddend
841 const FAddendCoef &Coeff = Opnd.getCoef(); local
[all...]

Completed in 4862 milliseconds