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

  /external/skia/include/core/
SkMath.h 20 e.g. to perform a fixedmul, call SkMulShift(a, b, 16)
22 int32_t SkMulShift(int32_t a, int32_t b, unsigned shift);
  /external/skia/src/core/
SkMatrix.cpp 750 #define SkScalarMulShift(a, b, s) SkMulShift(a, b, s)
893 inv->fMat[kMScaleX] = SkMulShift(fMat[kMScaleY], scale, fixedShift);
894 inv->fMat[kMSkewX] = SkMulShift(-fMat[kMSkewX], scale, fixedShift);
895 inv->fMat[kMTransX] = SkMulShift(tx.getShiftRight(33 - clzNumer), scale, sk64shift);
897 inv->fMat[kMSkewY] = SkMulShift(-fMat[kMSkewY], scale, fixedShift);
898 inv->fMat[kMScaleY] = SkMulShift(fMat[kMScaleX], scale, fixedShift);
899 inv->fMat[kMTransY] = SkMulShift(ty.getShiftRight(33 - clzNumer), scale, sk64shift);
    [all...]
SkMath.cpp 79 int32_t SkMulShift(int32_t a, int32_t b, unsigned shift) {

Completed in 999 milliseconds