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

/external/aac/libAACdec/src/
H A Daacdec_tns.h105 SCHAR Coeff[TNS_MAXIMUM_ORDER]; member in struct:__anon24
/external/chromium_org/third_party/skia/include/core/
H A DSkXfermode.h44 enum Coeff { enum in class:SkXfermode
60 in Coeff, then asCoeff() returns true, and sets (if not null) src and
74 virtual bool asCoeff(Coeff* src, Coeff* dst) const;
80 static bool AsCoeff(const SkXfermode*, Coeff* src, Coeff* dst);
180 * If the specified mode can be represented by a pair of Coeff, then return
185 static bool ModeAsCoeff(Mode mode, Coeff* src, Coeff* dst);
206 Coeff* sr
[all...]
/external/skia/include/core/
H A DSkXfermode.h44 enum Coeff { enum in class:SkXfermode
60 in Coeff, then asCoeff() returns true, and sets (if not null) src and
74 virtual bool asCoeff(Coeff* src, Coeff* dst) const;
80 static bool AsCoeff(const SkXfermode*, Coeff* src, Coeff* dst);
180 * If the specified mode can be represented by a pair of Coeff, then return
185 static bool ModeAsCoeff(Mode mode, Coeff* src, Coeff* dst);
206 Coeff* sr
[all...]
/external/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h355 const SCEV *Coeff; member in struct:llvm::DependenceAnalysis::CoefficientInfo
634 bool strongSIVtest(const SCEV *Coeff,
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp809 const SCEV *Coeff = BinomialCoefficient(It, i, SE, getType()); local
810 if (isa<SCEVCouldNotCompute>(Coeff))
811 return Coeff;
813 Result = SE.getAddExpr(Result, SE.getMulExpr(getOperand(i), Coeff));
2071 uint64_t Coeff;
2073 Coeff = umul_ov(Coeff1, Coeff2, Overflow);
2075 Coeff = Coeff1*Coeff2;
2076 const SCEV *CoeffTerm = getConstant(Ty, Coeff);
H A DDependenceAnalysis.cpp1003 bool DependenceAnalysis::strongSIVtest(const SCEV *Coeff, argument
1011 DEBUG(dbgs() << "\t Coeff = " << *Coeff);
1012 DEBUG(dbgs() << ", " << *Coeff->getType() << "\n");
1032 SE->isKnownNonNegative(Coeff) ? Coeff : SE->getNegativeSCEV(Coeff);
1043 if (isa<SCEVConstant>(Delta) && isa<SCEVConstant>(Coeff)) {
1045 APInt ConstCoeff = cast<SCEVConstant>(Coeff)->getValue()->getValue();
1051 // Make sure Coeff divide
1142 weakCrossingSIVtest(const SCEV *Coeff, const SCEV *SrcConst, const SCEV *DstConst, const Loop *CurLoop, unsigned Level, FullDependence &Result, Constraint &NewConstraint, const SCEV *&SplitIter) const argument
2229 const SCEV *Coeff = AddRec->getStepRecurrence(*SE); local
2250 const SCEV *Coeff = AddRec->getStepRecurrence(*SE); local
2330 const SCEV *Coeff = AddRec->getStepRecurrence(*SE); local
2348 const SCEV *Coeff = AddRec->getStepRecurrence(*SE); local
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp118 const FAddendCoef &getCoef(void) const { return Coeff; }
121 bool isZero() const { return Coeff.isZero(); }
123 void set(short Coefficient, Value *V) { Coeff.set(Coefficient), Val = V; }
125 { Coeff.set(Coefficient); Val = V; }
127 { Coeff.set(Coefficient->getValueAPF()); Val = V; }
129 void negate() { Coeff.negate(); }
141 Coeff += T.Coeff;
145 void Scale(const FAddendCoef& ScaleAmt) { Coeff *= ScaleAmt; }
147 // This addend has the value of "Coeff * Va
149 FAddendCoef Coeff; member in class:__anon21586::FAddend
825 const FAddendCoef &Coeff = Opnd.getCoef(); local
[all...]

Completed in 1850 milliseconds