Searched refs:Determinant (Results 1 - 4 of 4) sorted by last modified time

/external/deqp/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp3459 class Determinant;
3464 return app<Determinant<Size> >(mat);
3468 class Determinant<2> : public DeterminantBase<2> class in namespace:deqp::gls::BuiltinPrecisionTests::Functions
3480 class Determinant<3> : public DeterminantBase<3> class in namespace:deqp::gls::BuiltinPrecisionTests::Functions
3494 class Determinant<4> : public DeterminantBase<4> class in namespace:deqp::gls::BuiltinPrecisionTests::Functions
5139 funcs->addFactory(SharedPtr<const CaseFactory>(new SquareMatrixFuncCaseFactory<Determinant>()));
/external/chromium_org/ui/gfx/geometry/
H A Dmatrix3_f.cc33 // This routine is separated from the Matrix3F::Determinant because in
120 float Matrix3F::Determinant() const { function in class:gfx::Matrix3F
H A Dmatrix3_f.h67 float Determinant() const;
H A Dmatrix3_unittest.cc47 TEST(Matrix3fTest, Determinant) {
48 EXPECT_EQ(1.0f, Matrix3F::Identity().Determinant());
49 EXPECT_EQ(0.0f, Matrix3F::Zeros().Determinant());
50 EXPECT_EQ(0.0f, Matrix3F::Ones().Determinant());
55 EXPECT_EQ(390.0f, matrix.Determinant());
59 EXPECT_EQ(0, matrix.Determinant());
64 EXPECT_NEAR(0.3149f, matrix.Determinant(), 0.0001f);
76 EXPECT_EQ(0, singular.Determinant());

Completed in 1590 milliseconds