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

/external/chromium_org/third_party/skia/src/pathops/
H A DSkQuarticRoot.cpp94 const double invA = 1 / A; local
95 const double a = B * invA;
96 const double b = C * invA;
97 const double c = D * invA;
98 const double d = E * invA;
H A DSkPathOpsCubic.cpp242 double invA = 1 / A; local
243 a = B * invA;
244 b = C * invA;
245 c = D * invA;
/external/skia/src/pathops/
H A DSkQuarticRoot.cpp94 const double invA = 1 / A; local
95 const double a = B * invA;
96 const double b = C * invA;
97 const double c = D * invA;
98 const double d = E * invA;
H A DSkPathOpsCubic.cpp242 double invA = 1 / A; local
243 a = B * invA;
244 b = C * invA;
245 c = D * invA;
/external/chromium_org/third_party/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/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/chromium_org/third_party/skia/experimental/Intersection/
H A DQuarticRoot.cpp122 const double invA = 1 / A; local
123 const double a = B * invA;
124 const double b = C * invA;
125 const double c = D * invA;
126 const double d = E * invA;
H A DCubicUtilities.cpp114 double invA = 1 / A;
115 a = B * invA;
116 b = C * invA;
117 c = D * invA;
211 double invA = 1 / A; local
212 a = B * invA;
213 b = C * invA;
214 c = D * invA;
/external/skia/experimental/Intersection/
H A DQuarticRoot.cpp122 const double invA = 1 / A; local
123 const double a = B * invA;
124 const double b = C * invA;
125 const double c = D * invA;
126 const double d = E * invA;
H A DCubicUtilities.cpp114 double invA = 1 / A;
115 a = B * invA;
116 b = C * invA;
117 c = D * invA;
211 double invA = 1 / A; local
212 a = B * invA;
213 b = C * invA;
214 c = D * invA;
/external/deqp/framework/common/
H A DtcuMatrix.hpp251 const Matrix<T, 2, 2> invA = inverse(Matrix<T, 2, 2>(areaA)); local
256 const T schurComplement = T(1.0f) / (matD - matC*invA*matB)(0,0);
259 const Matrix<T, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA;
260 const Matrix<T, 2, 1> blockB = (zeroMat-invA)*matB*schurComplement;
261 const Matrix<T, 1, 2> blockC = matC*invA*(-schurComplement);
302 const Matrix<T, 2, 2> invA = inverse(Matrix<T, 2, 2>(areaA)); local
307 const Matrix<T, 2, 2> schurComplement = inverse(matD - matC*invA*matB);
310 const Matrix<T, 2, 2> blockA = invA
[all...]
/external/chromium_org/third_party/skia/tests/
H A DPathOpsCubicLineIntersectionIdeas.cpp117 double invA = 1 / A;
118 a = B * invA;
119 b = C * invA;
120 c = D * invA;
/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/deqp/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp3567 ExprP<Mat2> invA = bindExpression("invA", ctx, local
3577 (matD - dot(matC * invA, matB)));
3579 ExprP<Vec2> t1 = invA * matB;
3582 ExprP<Mat2> t4 = t3 * invA;
3583 ExprP<Mat2> t5 = invA + t4;
3586 (invA * matB) * -schur);
3588 (matC * invA) * -schur);
3607 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/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 4120 milliseconds