/external/skia/samplecode/ |
D | SampleComplexClip.cpp | 97 for (int invA = 0; invA < 2; ++invA) { in onDrawContent() local 99 size_t idx = invA * SK_ARRAY_COUNT(gOps) + op; in onDrawContent() 107 clipA.setFillType(invA ? SkPath::kInverseEvenOdd_FillType : in onDrawContent() 130 const char* aTxt = invA ? "InverseA " : "A "; in onDrawContent()
|
/external/skia/src/core/ |
D | SkBlitRow_D32.cpp | 147 unsigned invA = 255 - SkGetPackedA32(color); in Color32() local 148 invA += invA >> 7; in Color32() 149 SkASSERT(invA < 256); // We've already handled alpha == 0 above. in Color32() 152 Sk16b invA_16x(invA); in Color32()
|
/external/skia/gm/ |
D | complexclip3.cpp | 73 for (int invA = 0; invA < 2; ++invA) { in onDraw() local 80 bool doInvA = SkToBool(invA); in onDraw()
|
/external/deqp/framework/common/ |
D | tcuMatrix.hpp | 235 const Matrix<T, 2, 2> invA = inverse(Matrix<T, 2, 2>(areaA)); in doInverse() local 240 const T schurComplement = T(1.0f) / (matD - matC*invA*matB)(0,0); in doInverse() 243 const Matrix<T, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA; in doInverse() 244 const Matrix<T, 2, 1> blockB = (zeroMat-invA)*matB*schurComplement; in doInverse() 245 const Matrix<T, 1, 2> blockC = matC*invA*(-schurComplement); in doInverse() 286 const Matrix<T, 2, 2> invA = inverse(Matrix<T, 2, 2>(areaA)); in doInverse() local 291 const Matrix<T, 2, 2> schurComplement = inverse(matD - matC*invA*matB); in doInverse() 294 const Matrix<T, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA; in doInverse() 295 const Matrix<T, 2, 2> blockB = (zeroMat-invA)*matB*schurComplement; in doInverse() 296 const Matrix<T, 2, 2> blockC = (zeroMat-schurComplement)*matC*invA; in doInverse()
|
/external/skia/tests/ |
D | PathOpsCubicLineIntersectionIdeas.cpp | 117 double invA = 1 / A; 118 a = B * invA; 119 b = C * invA; 120 c = D * invA;
|
/external/deqp/modules/gles3/functional/ |
D | es3fShaderMatrixTests.cpp | 766 const tcu::Matrix<float, 2, 2> invA = inverse(tcu::Matrix<float, 2, 2>(areaA)); in inverse() local 771 const float schurComplement = 1.0f / (matD - matC*invA*matB)(0,0); in inverse() 774 const tcu::Matrix<float, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA; in inverse() 775 const tcu::Matrix<float, 2, 1> blockB = (zeroMat-invA)*matB*schurComplement; in inverse() 776 const tcu::Matrix<float, 1, 2> blockC = matC*invA*(-schurComplement); in inverse() 818 const tcu::Matrix<float, 2, 2> invA = inverse(Mat2(areaA)); in inverse() local 823 const tcu::Matrix<float, 2, 2> schurComplement = inverse(matD - matC*invA*matB); in inverse() 826 const tcu::Matrix<float, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA; in inverse() 827 const tcu::Matrix<float, 2, 2> blockB = (zeroMat-invA)*matB*schurComplement; in inverse() 828 const tcu::Matrix<float, 2, 2> blockC = (zeroMat-schurComplement)*matC*invA; in inverse()
|
/external/skia/src/pathops/ |
D | SkPathOpsCubic.cpp | 410 double invA = 1 / A; in RootsReal() local 411 a = B * invA; in RootsReal() 412 b = C * invA; in RootsReal() 413 c = D * invA; in RootsReal()
|
/external/opencv/cv/src/ |
D | _cvmatrix.h | 349 CV_INLINE void icvInvertMatrix_64d( double* A, int n, double* invA ) in icvInvertMatrix_64d() argument 352 CvMat invAm = cvMat( n, n, CV_64F, invA ); in icvInvertMatrix_64d()
|
D | cvimgwarp.cpp | 1091 A, b, invA, invAb; in cvWarpAffine() local 1120 cvGetCols( &dstAb, &invA, 0, 2 ); in cvWarpAffine() 1122 cvInvert( &A, &invA, CV_SVD ); in cvWarpAffine() 1123 cvGEMM( &invA, &b, -1, 0, 0, &invAb ); in cvWarpAffine() 1366 invA = cvMat( 3, 3, CV_64F, dst_matrix ); in cvWarpPerspective() local 1391 cvConvertScale( matrix, &invA ); in cvWarpPerspective() 1395 cvInvert( &A, &invA, CV_SVD ); in cvWarpPerspective() 1432 invA.data.db, 1 << method ); in cvWarpPerspective() 1446 cvInvert( &invA, &A, CV_SVD ); in cvWarpPerspective()
|
/external/deqp/modules/glshared/ |
D | glsBuiltinPrecisionTests.cpp | 3662 ExprP<Mat2> invA = bindExpression("invA", ctx, in doExpand() local 3672 (matD - dot(matC * invA, matB))); in doExpand() 3674 ExprP<Vec2> t1 = invA * matB; in doExpand() 3677 ExprP<Mat2> t4 = t3 * invA; in doExpand() 3678 ExprP<Mat2> t5 = invA + t4; in doExpand() 3681 (invA * matB) * -schur); in doExpand() 3683 (matC * invA) * -schur); in doExpand() 3702 ExprP<Mat2> invA = bindExpression("invA", ctx, in doExpand() local 3715 inverse(matD + -(matC * invA * matB))); in doExpand() 3717 invA + (invA * matB * schur * matC * invA)); in doExpand() [all …]
|
/external/opencv/cvaux/src/ |
D | cvepilines.cpp | 2424 double invA[64]; in icvComputePerspectiveCoeffs() local 2426 CvMat matInvA = cvMat( 8, 8, CV_64F, invA ); in icvComputePerspectiveCoeffs() 2564 double invA[64]; in cvInitPerspectiveTransform() local 2566 CvMat matInvA = cvMat( 8, 8, CV_64F, invA ); in cvInitPerspectiveTransform()
|