Home
last modified time | relevance | path

Searched refs:determinant3x3 (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/transforms/
DTransformationMatrix.cpp101 static double determinant3x3(double a1, double a2, double a3, double b1, double b2, double b3, doub… in determinant3x3() function
137 return a1 * determinant3x3(b2, b3, b4, c2, c3, c4, d2, d3, d4) in determinant4x4()
138 - b1 * determinant3x3(a2, a3, a4, c2, c3, c4, d2, d3, d4) in determinant4x4()
139 + c1 * determinant3x3(a2, a3, a4, b2, b3, b4, d2, d3, d4) in determinant4x4()
140 - d1 * determinant3x3(a2, a3, a4, b2, b3, b4, c2, c3, c4); in determinant4x4()
184 result[0][0] = determinant3x3(b2, b3, b4, c2, c3, c4, d2, d3, d4); in adjoint()
185 result[1][0] = - determinant3x3(a2, a3, a4, c2, c3, c4, d2, d3, d4); in adjoint()
186 result[2][0] = determinant3x3(a2, a3, a4, b2, b3, b4, d2, d3, d4); in adjoint()
187 result[3][0] = - determinant3x3(a2, a3, a4, b2, b3, b4, c2, c3, c4); in adjoint()
189 result[0][1] = - determinant3x3(b1, b3, b4, c1, c3, c4, d1, d3, d4); in adjoint()
[all …]
/external/webkit/Source/WebCore/
DChangeLog-2009-06-1641129 (WebCore::determinant3x3):