Searched defs:sdot (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/skia/src/core/
H A DSkMatrix.cpp19 // sdot and scross are indended to capture these compound operations into a
223 static inline SkScalar sdot(SkScalar a, SkScalar b, SkScalar c, SkScalar d) { function
227 static inline SkScalar sdot(SkScalar a, SkScalar b, SkScalar c, SkScalar d, function
261 fMat[kMTransX] += sdot(fMat[kMScaleX], dx, fMat[kMSkewX], dy);
262 fMat[kMTransY] += sdot(fMat[kMSkewY], dx, fMat[kMScaleY], dy);
405 fMat[kMTransX] = sdot(sinV, py, oneMinusCosV, px);
409 fMat[kMTransY] = sdot(-sinV, px, oneMinusCosV, py);
933 dst->fY = sdot(sx, ky, sy, my);
934 dst->fX = sdot(sx, mx, sy, kx);
959 dst->fY = sdot(s
[all...]
/external/skia/src/core/
H A DSkMatrix.cpp19 // sdot and scross are indended to capture these compound operations into a
223 static inline SkScalar sdot(SkScalar a, SkScalar b, SkScalar c, SkScalar d) { function
227 static inline SkScalar sdot(SkScalar a, SkScalar b, SkScalar c, SkScalar d, function
261 fMat[kMTransX] += sdot(fMat[kMScaleX], dx, fMat[kMSkewX], dy);
262 fMat[kMTransY] += sdot(fMat[kMSkewY], dx, fMat[kMScaleY], dy);
405 fMat[kMTransX] = sdot(sinV, py, oneMinusCosV, px);
409 fMat[kMTransY] = sdot(-sinV, px, oneMinusCosV, py);
933 dst->fY = sdot(sx, ky, sy, my);
934 dst->fX = sdot(sx, mx, sy, kx);
959 dst->fY = sdot(s
[all...]

Completed in 100 milliseconds