Lines Matching defs:tmp

626         SkMatrix tmp;
629 tmp.fMat[kMScaleX] = rowcol3(&a.fMat[0], &b.fMat[0]);
630 tmp.fMat[kMSkewX] = rowcol3(&a.fMat[0], &b.fMat[1]);
631 tmp.fMat[kMTransX] = rowcol3(&a.fMat[0], &b.fMat[2]);
632 tmp.fMat[kMSkewY] = rowcol3(&a.fMat[3], &b.fMat[0]);
633 tmp.fMat[kMScaleY] = rowcol3(&a.fMat[3], &b.fMat[1]);
634 tmp.fMat[kMTransY] = rowcol3(&a.fMat[3], &b.fMat[2]);
635 tmp.fMat[kMPersp0] = rowcol3(&a.fMat[6], &b.fMat[0]);
636 tmp.fMat[kMPersp1] = rowcol3(&a.fMat[6], &b.fMat[1]);
637 tmp.fMat[kMPersp2] = rowcol3(&a.fMat[6], &b.fMat[2]);
639 tmp.setTypeMask(kUnknown_Mask);
641 tmp.fMat[kMScaleX] = muladdmul(a.fMat[kMScaleX],
646 tmp.fMat[kMSkewX] = muladdmul(a.fMat[kMScaleX],
651 tmp.fMat[kMTransX] = muladdmul(a.fMat[kMScaleX],
656 tmp.fMat[kMSkewY] = muladdmul(a.fMat[kMSkewY],
661 tmp.fMat[kMScaleY] = muladdmul(a.fMat[kMSkewY],
666 tmp.fMat[kMTransY] = muladdmul(a.fMat[kMSkewY],
671 tmp.fMat[kMPersp0] = 0;
672 tmp.fMat[kMPersp1] = 0;
673 tmp.fMat[kMPersp2] = 1;
674 //SkDebugf("Concat mat non-persp type: %d\n", tmp.getType());
675 //SkASSERT(!(tmp.getType() & kPerspective_Mask));
676 tmp.setTypeMask(kUnknown_Mask | kOnlyPerspectiveValid_Mask);
678 *this = tmp;
873 SkMatrix* tmp = inv;
876 if (applyingInPlace || nullptr == tmp) {
877 tmp = &storage; // we either need to avoid trampling memory or have no memory
880 ComputeInv(tmp->fMat, fMat, invDet, isPersp);
881 if (!tmp->isFinite()) {
885 tmp->setTypeMask(fTypeMask);
1113 SkPoint tmp;
1115 proc(*this, src[i].fX, src[i].fY, &tmp);
1116 dst[i].set(tmp.fX - origin.fX, tmp.fY - origin.fY);
1119 SkMatrix tmp = *this;
1121 tmp.fMat[kMTransX] = tmp.fMat[kMTransY] = 0;
1122 tmp.clearTypeMask(kTranslate_Mask);
1123 tmp.mapPoints(dst, src, count);