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

/external/skia/gm/
H A Dcomplexclip3.cpp73 for (int invA = 0; invA < 2; ++invA) {
80 bool doInvA = SkToBool(invA);
/external/skia/samplecode/
H A DSampleComplexClip.cpp98 for (int invA = 0; invA < 2; ++invA) {
100 size_t idx = invA * SK_ARRAY_COUNT(gOps) + op;
108 clipA.setFillType(invA ? SkPath::kInverseEvenOdd_FillType :
131 const char* aTxt = invA ? "InverseA " : "A ";
/external/skia/src/opts/
H A DSkBlitRow_opts.h28 unsigned invA = 255 - SkGetPackedA32(color); local
29 invA += invA >> 7;
30 SkASSERT(invA < 256); // We've should have already handled alpha == 0 externally.
33 Sk16b invA_16x(invA);
/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/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderMatrixTests.cpp761 const tcu::Matrix<float, 2, 2> invA = inverse(tcu::Matrix<float, 2, 2>(areaA)); local
766 const float schurComplement = 1.0f / (matD - matC*invA*matB)(0,0);
769 const tcu::Matrix<float, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA;
770 const tcu::Matrix<float, 2, 1> blockB = (zeroMat-invA)*matB*schurComplement;
771 const tcu::Matrix<float, 1, 2> blockC = matC*invA*(-schurComplement);
813 const tcu::Matrix<float, 2, 2> invA = inverse(Mat2(areaA)); local
818 const tcu::Matrix<float, 2, 2> schurComplement = inverse(matD - matC*invA*matB);
821 const tcu::Matrix<float, 2, 2> blockA = invA
[all...]
/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.cpp446 double invA = 1 / A;
447 a = B * invA;
448 b = C * invA;
449 c = D * invA;
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderBuiltinPrecisionTests.cpp3672 ExprP<Mat2> invA = bindExpression("invA", ctx, local
3682 (matD - dot(matC * invA, matB)));
3684 ExprP<Vec2> t1 = invA * matB;
3687 ExprP<Mat2> t4 = t3 * invA;
3688 ExprP<Mat2> t5 = invA + t4;
3691 (invA * matB) * -schur);
3693 (matC * invA) * -schur);
3712 ExprP<Mat2> invA = bindExpression("invA", ct local
[all...]
/external/deqp/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp3701 ExprP<Mat2> invA = bindExpression("invA", ctx, local
3711 (matD - dot(matC * invA, matB)));
3713 ExprP<Vec2> t1 = invA * matB;
3716 ExprP<Mat2> t4 = t3 * invA;
3717 ExprP<Mat2> t5 = invA + t4;
3720 (invA * matB) * -schur);
3722 (matC * invA) * -schur);
3741 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 );
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 478 milliseconds