Home
last modified time | relevance | path

Searched refs:testMatrix (Results 1 – 6 of 6) sorted by relevance

/external/angle/src/tests/gl_tests/gles1/
DMatrixLoadTest.cpp37 angle::Mat4 testMatrix(0.0f, 4.0f, 8.0f, 12.0f, 1.0f, 5.0f, 9.0f, 10.0f, 2.0f, 6.0f, 10.0f, in TEST_P() local
42 glLoadMatrixf(testMatrix.data()); in TEST_P()
48 EXPECT_EQ(testMatrix, outputMatrix); in TEST_P()
56 angle::Mat4 testMatrix(0.0f, 4.0f, 8.0f, 12.0f, 1.0f, 5.0f, 9.0f, 10.0f, 2.0f, 6.0f, 10.0f, in TEST_P() local
61 glLoadMatrixf(testMatrix.data()); in TEST_P()
67 EXPECT_EQ(testMatrix, outputMatrix); in TEST_P()
79 angle::Mat4 testMatrix(0.0f, 4.0f, 8.0f, 12.0f, 1.0f, 5.0f, 9.0f, 10.0f, 2.0f, 6.0f, 10.0f, in TEST_P() local
98 glLoadMatrixf(testMatrix.data()); in TEST_P()
101 EXPECT_EQ(testMatrix, outputMatrix); in TEST_P()
DMatrixBuiltinsTest.cpp42 angle::Mat4 testMatrix = angle::Mat4::Rotate(angle, angle::Vector3(x, y, z)); in TEST_P() local
51 EXPECT_TRUE(testMatrix.nearlyEqual(0.00001f, outputMatrix)); in TEST_P()
62 angle::Mat4 testMatrix = angle::Mat4::Rotate(angle, angle::Vector3(x, y, z)); in TEST_P() local
71 const float *inputArray = testMatrix.data(); in TEST_P()
87 angle::Mat4 testMatrix = angle::Mat4::Translate(angle::Vector3(x, y, z)); in TEST_P() local
98 EXPECT_TRUE(testMatrix.nearlyEqual(0.00001f, outputMatrix)); in TEST_P()
108 angle::Mat4 testMatrix = angle::Mat4::Scale(angle::Vector3(x, y, z)); in TEST_P() local
119 EXPECT_TRUE(testMatrix.nearlyEqual(0.00001f, outputMatrix)); in TEST_P()
133 angle::Mat4 testMatrix = angle::Mat4::Frustum(l, r, b, t, n, f); in TEST_P() local
142 EXPECT_TRUE(testMatrix.nearlyEqual(0.00001f, outputMatrix)); in TEST_P()
[all …]
DMatrixMultTest.cpp37 angle::Mat4 testMatrix; in TEST_P() local
40 glMultMatrixf(testMatrix.data()); in TEST_P()
54 angle::Mat4 testMatrix = angle::Mat4::Translate(angle::Vector3(1.0f, 0.0f, 0.0f)); in TEST_P() local
58 glMultMatrixf(testMatrix.data()); in TEST_P()
61 glMultMatrixf(testMatrix.data()); in TEST_P()
/external/eigen/unsupported/test/
Dmatrix_function.cpp158 void testMatrix(const MatrixType& A) in testMatrix() function
174 testMatrix(MatrixType::Random(size, size).eval()); in testMatrixType()
175 testMatrix(randomMatrixWithRealEivals<MatrixType>(size)); in testMatrixType()
176 testMatrix(randomMatrixWithImagEivals<MatrixType>::run(size)); in testMatrixType()
/external/zxing/core/src/test/java/com/google/zxing/
DRGBLuminanceSourceTestCase.java42 public void testMatrix() { in testMatrix() method in RGBLuminanceSourceTestCase
/external/tensorflow/tensorflow/python/kernel_tests/strings_ops/
Dunicode_encode_op_test.py157 def testMatrix(self, encoding): member in UnicodeEncodeOpTest