Searched refs:determinant3x3 (Results 1 – 2 of 2) sorted by relevance
/external/webkit/WebCore/platform/graphics/transforms/ |
D | TransformationMatrix.cpp | 88 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/ |
D | ChangeLog-2009-06-16 | 41129 (WebCore::determinant3x3):
|