Lines Matching full:tmp2
479 Sk64 tmp1, tmp2;
481 tmp2.setMul(c, d);
482 tmp1.add(tmp2);
492 Sk64 tmp1, tmp2;
494 tmp2.setMul(c, d);
495 tmp1.add(tmp2);
501 Sk64 tmp1, tmp2;
504 tmp2.setMul(row[1], col[3]); // N * fixed
505 tmp1.add(tmp2);
507 tmp2.setMul(row[2], col[6]); // N * fract
508 tmp2.roundRight(14); // make it fixed
509 tmp1.add(tmp2);
684 Sk64 tmp1, tmp2;
688 tmp2.setMul(mat[SkMatrix::kMSkewX], fracmuladdmul(mat[SkMatrix::kMTransY], mat[SkMatrix::kMPersp0], -mat[SkMatrix::kMSkewY], mat[SkMatrix::kMPersp2]));
689 tmp1.add(tmp2);
690 tmp2.setMul(mat[SkMatrix::kMTransX], fracmuladdmul(mat[SkMatrix::kMSkewY], mat[SkMatrix::kMPersp1], -mat[SkMatrix::kMScaleY], mat[SkMatrix::kMPersp0]));
691 tmp1.add(tmp2);
694 tmp2.setMul(mat[SkMatrix::kMSkewX], mat[SkMatrix::kMSkewY]);
695 tmp1.sub(tmp2);