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.java24 private Matrix mMatrix; field in MatrixTest
30 mMatrix = new Matrix(); in setUp()
36 new Matrix(mMatrix); in testConstractor()
40 assertTrue(mMatrix.isIdentity()); in testIsIdentity()
41 mMatrix.setScale(0f, 0f); in testIsIdentity()
42 assertFalse(mMatrix.isIdentity()); in testIsIdentity()
46 assertTrue(mMatrix.rectStaysRect()); in testRectStaysRect()
47 mMatrix.postRotate(80); in testRectStaysRect()
48 assertFalse(mMatrix.rectStaysRect()); in testRectStaysRect()
53 mMatrix.getValues(mValues); in testSet()
[all …]
/cts/suite/cts/deviceTests/opengl/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/renderscript/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 …]