Home
last modified time | relevance | path

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

/external/webkit/WebCore/platform/graphics/transforms/
DTransformationMatrix.cpp88 static double determinant3x3(double a1, double a2, double a3, double b1, double b2, double b3, doub… in determinant3x3() function
124 return a1 * determinant3x3(b2, b3, b4, c2, c3, c4, d2, d3, d4) in determinant4x4()
125 - b1 * determinant3x3(a2, a3, a4, c2, c3, c4, d2, d3, d4) in determinant4x4()
126 + c1 * determinant3x3(a2, a3, a4, b2, b3, b4, d2, d3, d4) in determinant4x4()
127 - d1 * determinant3x3(a2, a3, a4, b2, b3, b4, c2, c3, c4); in determinant4x4()
171 result[0][0] = determinant3x3(b2, b3, b4, c2, c3, c4, d2, d3, d4); in adjoint()
172 result[1][0] = - determinant3x3(a2, a3, a4, c2, c3, c4, d2, d3, d4); in adjoint()
173 result[2][0] = determinant3x3(a2, a3, a4, b2, b3, b4, d2, d3, d4); in adjoint()
174 result[3][0] = - determinant3x3(a2, a3, a4, b2, b3, b4, c2, c3, c4); in adjoint()
176 result[0][1] = - determinant3x3(b1, b3, b4, c1, c3, c4, d1, d3, d4); in adjoint()
[all …]
/external/webkit/WebCore/
DChangeLog-2009-06-1641129 (WebCore::determinant3x3):