HomeSort by relevance Sort by last modified time
    Searched refs:Coeff (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/third_party/skia/include/core/
SkXfermode.h 44 enum Coeff {
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* src
    [all...]
  /external/skia/include/core/
SkXfermode.h 44 enum Coeff {
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* src
    [all...]
  /external/aac/libAACdec/src/
aacdec_tns.h 105 SCHAR Coeff[TNS_MAXIMUM_ORDER];
aacdec_tns.cpp 203 filter->Coeff[i] = (coef & s_mask) ? (coef | n_mask) : coef;
216 static void CTns_Filter (FIXP_DBL *spec, int size, int inc, FIXP_TCC coeff [], int order)
258 pCoeff = coeff; \
346 C_AALLOC_SCRATCH_START(coeff, FIXP_TCC, TNS_MAXIMUM_ORDER);
361 pCoeff = &coeff[filter->Order-1];
366 *pCoeff-- = FDKaacDec_tnsCoeff3[filter->Coeff[i]+4];
372 *pCoeff-- = FDKaacDec_tnsCoeff4[filter->Coeff[i]+8];
403 coeff,
409 C_AALLOC_SCRATCH_END(coeff, FIXP_TCC, TNS_MAXIMUM_ORDER);
  /external/chromium_org/third_party/skia/src/core/
SkPaintPriv.cpp 18 // make it possible to test modes that do not have a Coeff representation.
24 SkXfermode::Coeff srcCoeff, dstCoeff;
SkXfermode.cpp 637 SkXfermode::Coeff fSC;
638 SkXfermode::Coeff fDC;
641 #define CANNOT_USE_COEFF SkXfermode::Coeff(-1)
678 bool SkXfermode::asCoeff(Coeff* src, Coeff* dst) const {
686 bool SkXfermode::asNewEffectOrCoeff(GrContext*, GrEffectRef**, Coeff* src, Coeff* dst, GrTexture*) const {
693 Coeff* src,
694 Coeff* dst,
    [all...]
SkDraw.cpp 975 SkXfermode::Coeff dc;
    [all...]
  /external/skia/src/core/
SkPaintPriv.cpp 18 // make it possible to test modes that do not have a Coeff representation.
24 SkXfermode::Coeff srcCoeff, dstCoeff;
SkXfermode.cpp 637 SkXfermode::Coeff fSC;
638 SkXfermode::Coeff fDC;
641 #define CANNOT_USE_COEFF SkXfermode::Coeff(-1)
678 bool SkXfermode::asCoeff(Coeff* src, Coeff* dst) const {
686 bool SkXfermode::asNewEffectOrCoeff(GrContext*, GrEffectRef**, Coeff* src, Coeff* dst, GrTexture*) const {
693 Coeff* src,
694 Coeff* dst,
    [all...]
SkDraw.cpp 976 SkXfermode::Coeff dc;
    [all...]
  /external/libvpx/libvpx/vp8/encoder/ppc/
rdopt_altivec.asm 15 ;# r3 short *Coeff
26 lvx v0, 0, r3 ;# Coeff
37 lvx v0, r10, r3 ;# Coeff
  /external/llvm/lib/Analysis/
DependenceAnalysis.cpp     [all...]
ScalarEvolution.cpp 809 const SCEV *Coeff = BinomialCoefficient(It, i, SE, getType());
810 if (isa<SCEVCouldNotCompute>(Coeff))
811 return Coeff;
813 Result = SE.getAddExpr(Result, SE.getMulExpr(getOperand(i), Coeff));
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 118 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 * Val"
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLProgram.cpp 121 inline void need_blend_inputs(SkXfermode::Coeff srcCoeff,
122 SkXfermode::Coeff dstCoeff,
163 inline void blend_term_string(SkString* str, SkXfermode::Coeff coeff,
166 switch (coeff) {
198 GrCrash("Unexpected xfer coeff.");
208 SkXfermode::Coeff uniformCoeff,
209 SkXfermode::Coeff colorCoeff,
481 SkXfermode::Coeff colorCoeff;
482 SkXfermode::Coeff filterColorCoeff
574 SkString coeff; local
    [all...]
  /external/skia/src/gpu/gl/
GrGLProgram.cpp 121 inline void need_blend_inputs(SkXfermode::Coeff srcCoeff,
122 SkXfermode::Coeff dstCoeff,
163 inline void blend_term_string(SkString* str, SkXfermode::Coeff coeff,
166 switch (coeff) {
198 GrCrash("Unexpected xfer coeff.");
208 SkXfermode::Coeff uniformCoeff,
209 SkXfermode::Coeff colorCoeff,
481 SkXfermode::Coeff colorCoeff;
482 SkXfermode::Coeff filterColorCoeff
574 SkString coeff; local
    [all...]
  /external/chromium_org/third_party/skia/src/effects/
SkArithmeticMode.cpp 39 virtual bool asNewEffectOrCoeff(GrContext*, GrEffectRef** effect, Coeff*, Coeff*, GrTexture* background) const SK_OVERRIDE;
438 Coeff*,
439 Coeff*,
SkXfermodeImageFilter.cpp 113 SkXfermode::Coeff sm, dm;
  /external/skia/src/effects/
SkArithmeticMode.cpp 39 virtual bool asNewEffectOrCoeff(GrContext*, GrEffectRef** effect, Coeff*, Coeff*, GrTexture* background) const SK_OVERRIDE;
438 Coeff*,
439 Coeff*,
SkXfermodeImageFilter.cpp 113 SkXfermode::Coeff sm, dm;
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 355 const SCEV *Coeff;
634 bool strongSIVtest(const SCEV *Coeff,
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
SkGpuDevice.cpp 467 SkXfermode::Coeff sm;
468 SkXfermode::Coeff dm;
849 // blend coeff of zero requires dual source blending support in order
851 // code path may not be taken. So we use a dst blend coeff of ISA. We
853 // use a zero dst coeff when dual source blending isn't available.
    [all...]
  /external/skia/src/gpu/
SkGpuDevice.cpp 467 SkXfermode::Coeff sm;
468 SkXfermode::Coeff dm;
849 // blend coeff of zero requires dual source blending support in order
851 // code path may not be taken. So we use a dst blend coeff of ISA. We
853 // use a zero dst coeff when dual source blending isn't available.
    [all...]

Completed in 3883 milliseconds