Home
last modified time | relevance | path

Searched refs:mMatrix (Results 1 – 4 of 4) sorted by relevance

/cts/tests/tests/graphics/src/android/graphics/cts/
DMatrixTest.java40 private Matrix mMatrix; field in MatrixTest
45 mMatrix = new Matrix(); in setup()
52 assertTrue(new Matrix(mMatrix).isIdentity()); in testConstructor()
57 assertTrue(mMatrix.isIdentity()); in testIsIdentity()
58 mMatrix.setScale(0f, 0f); in testIsIdentity()
59 assertFalse(mMatrix.isIdentity()); in testIsIdentity()
238 assertTrue(mMatrix.rectStaysRect()); in testRectStaysRect()
239 mMatrix.postRotate(80); in testRectStaysRect()
240 assertFalse(mMatrix.rectStaysRect()); in testRectStaysRect()
245 assertTrue(mMatrix.isAffine()); in testIsAffine()
[all …]
/cts/tests/openglperf2/jni/graphics/
DTransformationNode.cpp17 mMatrix(matrix) { in TransformationNode()
21 delete mMatrix; in ~TransformationNode()
29 model.multiply(*mMatrix, mSavedModelMatrix); in before()
DTransformationNode.h32 Matrix* mMatrix; variable
/cts/tests/tests/rsblas/src/android/renderscript/cts/
DIntrinsicBLAS.java238 private void xGEMV_API_test(int trans, int incX, int incY, ArrayList<Allocation> mMatrix) { in xGEMV_API_test() argument
239 for (Allocation matA : mMatrix) { in xGEMV_API_test()
240 for (Allocation vecX : mMatrix) { in xGEMV_API_test()
244 for (Allocation vecY : mMatrix) { in xGEMV_API_test()
290 public void L2_xGEMV_API(ArrayList<Allocation> mMatrix) { in L2_xGEMV_API() argument
293 xGEMV_API_test(trans, incX, incX, mMatrix); in L2_xGEMV_API()
536 …void xGBMV_API_test(int trans, int KL, int KU, int incX, int incY, ArrayList<Allocation> mMatrix) { in xGBMV_API_test() argument
537 for (Allocation matA : mMatrix) { in xGBMV_API_test()
538 for (Allocation vecX : mMatrix) { in xGBMV_API_test()
542 for (Allocation vecY : mMatrix) { in xGBMV_API_test()
[all …]