Searched refs:invA (Results 1 - 11 of 11) sorted by relevance

/external/skia/gm/
H A Dcomplexclip3.cpp73 for (int invA = 0; invA < 2; ++invA) {
80 bool doInvA = SkToBool(invA);
/external/skia/src/core/
H A DSkBlitRow_D32.cpp147 unsigned invA = 255 - SkGetPackedA32(color);
148 invA += invA >> 7;
149 SkASSERT(invA < 256); // We've already handled alpha == 0 above.
152 Sk16b invA_16x(invA);
/external/skia/samplecode/
H A DSampleComplexClip.cpp97 for (int invA = 0; invA < 2; ++invA) {
99 size_t idx = invA * SK_ARRAY_COUNT(gOps) + op;
107 clipA.setFillType(invA ? SkPath::kInverseEvenOdd_FillType :
130 const char* aTxt = invA ? "InverseA " : "A ";
/external/deqp/framework/common/
H A DtcuMatrix.hpp235 const Matrix<T, 2, 2> invA = inverse(Matrix<T, 2, 2>(areaA)); local
240 const T schurComplement = T(1.0f) / (matD - matC*invA*matB)(0,0);
243 const Matrix<T, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA;
244 const Matrix<T, 2, 1> blockB = (zeroMat-invA)*matB*schurComplement;
245 const Matrix<T, 1, 2> blockC = matC*invA*(-schurComplement);
286 const Matrix<T, 2, 2> invA = inverse(Matrix<T, 2, 2>(areaA)); local
291 const Matrix<T, 2, 2> schurComplement = inverse(matD - matC*invA*matB);
294 const Matrix<T, 2, 2> blockA = invA
[all...]
/external/skia/tests/
H A DPathOpsCubicLineIntersectionIdeas.cpp117 double invA = 1 / A;
118 a = B * invA;
119 b = C * invA;
120 c = D * invA;
/external/deqp/modules/gles3/functional/
H A Des3fShaderMatrixTests.cpp766 const tcu::Matrix<float, 2, 2> invA = inverse(tcu::Matrix<float, 2, 2>(areaA)); local
771 const float schurComplement = 1.0f / (matD - matC*invA*matB)(0,0);
774 const tcu::Matrix<float, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA;
775 const tcu::Matrix<float, 2, 1> blockB = (zeroMat-invA)*matB*schurComplement;
776 const tcu::Matrix<float, 1, 2> blockC = matC*invA*(-schurComplement);
818 const tcu::Matrix<float, 2, 2> invA = inverse(Mat2(areaA)); local
823 const tcu::Matrix<float, 2, 2> schurComplement = inverse(matD - matC*invA*matB);
826 const tcu::Matrix<float, 2, 2> blockA = invA
[all...]
/external/opencv/cv/src/
H A D_cvmatrix.h349 CV_INLINE void icvInvertMatrix_64d( double* A, int n, double* invA )
352 CvMat invAm = cvMat( n, n, CV_64F, invA );
H A Dcvimgwarp.cpp1091 A, b, invA, invAb; local
1120 cvGetCols( &dstAb, &invA, 0, 2 );
1122 cvInvert( &A, &invA, CV_SVD );
1123 cvGEMM( &invA, &b, -1, 0, 0, &invAb );
1366 invA = cvMat( 3, 3, CV_64F, dst_matrix ); local
1391 cvConvertScale( matrix, &invA );
1395 cvInvert( &A, &invA, CV_SVD );
1432 invA.data.db, 1 << method );
1446 cvInvert( &invA, &A, CV_SVD );
/external/skia/src/pathops/
H A DSkPathOpsCubic.cpp410 double invA = 1 / A;
411 a = B * invA;
412 b = C * invA;
413 c = D * invA;
/external/deqp/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp3662 ExprP<Mat2> invA = bindExpression("invA", ctx, local
3672 (matD - dot(matC * invA, matB)));
3674 ExprP<Vec2> t1 = invA * matB;
3677 ExprP<Mat2> t4 = t3 * invA;
3678 ExprP<Mat2> t5 = invA + t4;
3681 (invA * matB) * -schur);
3683 (matC * invA) * -schur);
3702 ExprP<Mat2> invA = bindExpression("invA", ct local
[all...]
/external/opencv/cvaux/src/
H A Dcvepilines.cpp2424 double invA[64]; local
2426 CvMat matInvA = cvMat( 8, 8, CV_64F, invA );
2564 double invA[64];
2566 CvMat matInvA = cvMat( 8, 8, CV_64F, invA );

Completed in 415 milliseconds