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

  /external/chromium_org/third_party/skia/include/core/
SkMath.h 157 static inline unsigned SkMul16ShiftRound(U16CPU a, U16CPU b, int shift) {
SkColorPriv.h 450 dr = (sr + SkMul16ShiftRound(dr, isa, SK_R16_BITS)) >> (8 - SK_R16_BITS);
451 dg = (sg + SkMul16ShiftRound(dg, isa, SK_G16_BITS)) >> (8 - SK_G16_BITS);
452 db = (sb + SkMul16ShiftRound(db, isa, SK_B16_BITS)) >> (8 - SK_B16_BITS);
  /external/skia/include/core/
SkMath.h 157 static inline unsigned SkMul16ShiftRound(U16CPU a, U16CPU b, int shift) {
SkColorPriv.h 450 dr = (sr + SkMul16ShiftRound(dr, isa, SK_R16_BITS)) >> (8 - SK_R16_BITS);
451 dg = (sg + SkMul16ShiftRound(dg, isa, SK_G16_BITS)) >> (8 - SK_G16_BITS);
452 db = (sb + SkMul16ShiftRound(db, isa, SK_B16_BITS)) >> (8 - SK_B16_BITS);
  /external/skia/tests/
MathTest.cpp 71 // test that SkMul16ShiftRound and SkMulDiv255Round return the same result
78 unsigned prod0 = SkMul16ShiftRound(a, b, 8);
90 unsigned prod0 = SkMul16ShiftRound(a, b, 8);

Completed in 1356 milliseconds