Searched refs:Coeff (Results 1 - 17 of 17) sorted by relevance

/external/aac/libAACdec/src/
H A Daacdec_tns.h105 SCHAR Coeff[TNS_MAXIMUM_ORDER]; member in struct:__anon24
H A Daacdec_tns.cpp203 filter->Coeff[i] = (coef & s_mask) ? (coef | n_mask) : coef;
366 *pCoeff-- = FDKaacDec_tnsCoeff3[filter->Coeff[i]+4];
372 *pCoeff-- = FDKaacDec_tnsCoeff4[filter->Coeff[i]+8];
/external/skia/include/core/
H A DSkXfermode.h43 enum Coeff { enum in class:SkXfermode
59 in Coeff, then asCoeff() returns true, and sets (if not null) src and
73 virtual bool asCoeff(Coeff* src, Coeff* dst) const;
79 static bool AsCoeff(const SkXfermode*, Coeff* src, Coeff* dst);
167 * If the specified mode can be represented by a pair of Coeff, then return
172 static bool ModeAsCoeff(Mode mode, Coeff* src, Coeff* dst);
/external/skia/legacy/include/core/
H A DSkXfermode.h39 enum Coeff { enum in class:SkXfermode
55 in Coeff, then asCoeff() returns true, and sets (if not null) src and
69 virtual bool asCoeff(Coeff* src, Coeff* dst);
75 static bool AsCoeff(SkXfermode*, Coeff* src, Coeff* dst);
163 * If the specified mode can be represented by a pair of Coeff, then return
168 static bool ModeAsCoeff(Mode mode, Coeff* src, Coeff* dst);
/external/skia/src/core/
H A DSkPaintPriv.cpp18 // make it possible to test modes that do not have a Coeff representation.
24 SkXfermode::Coeff srcCoeff, dstCoeff;
H A DSkXfermode.cpp418 SkXfermode::Coeff fSC;
419 SkXfermode::Coeff fDC;
422 #define CANNOT_USE_COEFF SkXfermode::Coeff(-1)
454 bool SkXfermode::asCoeff(Coeff* src, Coeff* dst) const {
726 virtual bool asCoeff(Coeff* sc, Coeff* dc) const SK_OVERRIDE {
762 Coeff fSrcCoeff, fDstCoeff;
1049 bool SkXfermode::ModeAsCoeff(Mode mode, Coeff* src, Coeff* ds
[all...]
H A DSkDraw.cpp966 SkXfermode::Coeff dc;
/external/libvpx/libvpx/vp8/encoder/ppc/
H A Drdopt_altivec.asm15 ;# r3 short *Coeff
26 lvx v0, 0, r3 ;# Coeff
37 lvx v0, r10, r3 ;# Coeff
/external/llvm/lib/Analysis/
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...]
H A DScalarEvolution.cpp806 const SCEV *Coeff = BinomialCoefficient(It, i, SE, getType()); local
807 if (isa<SCEVCouldNotCompute>(Coeff))
808 return Coeff;
810 Result = SE.getAddExpr(Result, SE.getMulExpr(getOperand(i), Coeff));
2068 uint64_t Coeff;
2070 Coeff = umul_ov(Coeff1, Coeff2, Overflow);
2072 Coeff = Coeff1*Coeff2;
2073 const SCEV *CoeffTerm = getConstant(Ty, Coeff);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp107 const FAddendCoef &getCoef(void) const { return Coeff; }
110 bool isZero() const { return Coeff.isZero(); }
112 void set(short Coefficient, Value *V) { Coeff.set(Coefficient), Val = V; }
114 { Coeff.set(Coefficient); Val = V; }
116 { Coeff.set(Coefficient->getValueAPF()); Val = V; }
118 void negate() { Coeff.negate(); }
130 Coeff += T.Coeff;
134 void Scale(const FAddendCoef& ScaleAmt) { Coeff *= ScaleAmt; }
136 // This addend has the value of "Coeff * Va
138 FAddendCoef Coeff; member in class:__anon9880::FAddend
789 const FAddendCoef &Coeff = Opnd.getCoef(); local
[all...]
/external/skia/legacy/src/core/
H A DSkXfermode.cpp413 SkXfermode::Coeff fSC;
414 SkXfermode::Coeff fDC;
417 #define CANNOT_USE_COEFF SkXfermode::Coeff(-1)
449 bool SkXfermode::asCoeff(Coeff* src, Coeff* dst) {
718 virtual bool asCoeff(Coeff* sc, Coeff* dc) {
748 fSrcCoeff = (Coeff)buffer.readU32();
749 fDstCoeff = (Coeff)buffer.readU32();
763 Coeff fSrcCoef
[all...]
H A DSkDraw.cpp847 SkXfermode::Coeff dc;
/external/skia/src/gpu/gl/
H A DGrGLProgram.cpp126 inline void need_blend_inputs(SkXfermode::Coeff srcCoeff,
127 SkXfermode::Coeff dstCoeff,
168 inline void blend_term_string(SkString* str, SkXfermode::Coeff coeff,
212 SkXfermode::Coeff uniformCoeff,
213 SkXfermode::Coeff colorCoeff,
513 SkXfermode::Coeff colorCoeff, uniformCoeff;
/external/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h321 const SCEV *Coeff; member in struct:llvm::DependenceAnalysis::CoefficientInfo
600 bool strongSIVtest(const SCEV *Coeff,
/external/skia/legacy/src/utils/
H A DSkDeferredCanvas.cpp21 // make it possible to test modes that do not have a Coeff representation.
27 SkXfermode::Coeff srcCoeff, dstCoeff;
/external/skia/src/gpu/
H A DSkGpuDevice.cpp483 SkXfermode::Coeff sm = SkXfermode::kOne_Coeff;
484 SkXfermode::Coeff dm = SkXfermode::kISA_Coeff;

Completed in 593 milliseconds