HomeSort by relevance Sort by last modified time
    Searched refs:invA (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/third_party/skia/src/pathops/
SkQuarticRoot.cpp 94 const double invA = 1 / A;
95 const double a = B * invA;
96 const double b = C * invA;
97 const double c = D * invA;
98 const double d = E * invA;
SkPathOpsCubic.cpp 242 double invA = 1 / A;
243 a = B * invA;
244 b = C * invA;
245 c = D * invA;
  /external/chromium_org/third_party/skia/samplecode/
SampleComplexClip.cpp 97 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/
QuarticRoot.cpp 122 const double invA = 1 / A;
123 const double a = B * invA;
124 const double b = C * invA;
125 const double c = D * invA;
126 const double d = E * invA;
CubicUtilities.cpp 114 double invA = 1 / A;
115 a = B * invA;
116 b = C * invA;
117 c = D * invA;
211 double invA = 1 / A;
212 a = B * invA;
213 b = C * invA;
214 c = D * invA;
  /external/deqp/framework/common/
tcuMatrix.hpp 251 const Matrix<T, 2, 2> invA = inverse(Matrix<T, 2, 2>(areaA));
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));
307 const Matrix<T, 2, 2> schurComplement = inverse(matD - matC*invA*matB);
310 const Matrix<T, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA
    [all...]
  /external/chromium_org/third_party/skia/tests/
PathOpsCubicLineIntersectionIdeas.cpp 117 double invA = 1 / A;
118 a = B * invA;
119 b = C * invA;
120 c = D * invA;
  /external/deqp/modules/gles3/functional/
es3fShaderMatrixTests.cpp 766 const tcu::Matrix<float, 2, 2> invA = inverse(tcu::Matrix<float, 2, 2>(areaA));
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));
823 const tcu::Matrix<float, 2, 2> schurComplement = inverse(matD - matC*invA*matB);
826 const tcu::Matrix<float, 2, 2> blockA = invA + invA*matB*schurComplement*matC*invA
    [all...]
  /external/opencv/cv/src/
_cvmatrix.h 349 CV_INLINE void icvInvertMatrix_64d( double* A, int n, double* invA )
352 CvMat invAm = cvMat( n, n, CV_64F, invA );
cvimgwarp.cpp     [all...]
  /external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp     [all...]
  /external/opencv/cvaux/src/
cvepilines.cpp     [all...]

Completed in 432 milliseconds