/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
D | omxVCM4P10_TransformQuant_LumaDC.c | 72 OMX_S32 m1[4][4], m2[4][4]; in omxVCM4P10_TransformQuant_LumaDC() local 92 m2[i][0] = m1[i][0] + m1[i][1]; /* a+b+c+d */ in omxVCM4P10_TransformQuant_LumaDC() 93 m2[i][1] = m1[i][2] + m1[i][3]; /* a+b-c-d */ in omxVCM4P10_TransformQuant_LumaDC() 94 m2[i][2] = m1[i][2] - m1[i][3]; /* a-b-c+d */ in omxVCM4P10_TransformQuant_LumaDC() 95 m2[i][3] = m1[i][0] - m1[i][1]; /* a-b+c-d */ in omxVCM4P10_TransformQuant_LumaDC() 102 m1[0][i] = m2[0][i] + m2[2][i]; in omxVCM4P10_TransformQuant_LumaDC() 103 m1[1][i] = m2[1][i] + m2[3][i]; in omxVCM4P10_TransformQuant_LumaDC() 104 m1[2][i] = m2[0][i] - m2[2][i]; in omxVCM4P10_TransformQuant_LumaDC() 105 m1[3][i] = m2[1][i] - m2[3][i]; in omxVCM4P10_TransformQuant_LumaDC() 107 m2[0][i] = m1[0][i] + m1[1][i]; in omxVCM4P10_TransformQuant_LumaDC() [all …]
|
D | omxVCM4P10_InvTransformDequant_LumaDC.c | 73 OMX_S32 m1[4][4], m2[4][4], Value; in omxVCM4P10_InvTransformDequant_LumaDC() local 94 m2[i][0] = m1[i][0] + m1[i][1]; /* a+b+c+d */ in omxVCM4P10_InvTransformDequant_LumaDC() 95 m2[i][1] = m1[i][2] + m1[i][3]; /* a+b-c-d */ in omxVCM4P10_InvTransformDequant_LumaDC() 96 m2[i][2] = m1[i][2] - m1[i][3]; /* a-b-c+d */ in omxVCM4P10_InvTransformDequant_LumaDC() 97 m2[i][3] = m1[i][0] - m1[i][1]; /* a-b+c-d */ in omxVCM4P10_InvTransformDequant_LumaDC() 104 m1[0][i] = m2[0][i] + m2[2][i]; in omxVCM4P10_InvTransformDequant_LumaDC() 105 m1[1][i] = m2[1][i] + m2[3][i]; in omxVCM4P10_InvTransformDequant_LumaDC() 106 m1[2][i] = m2[0][i] - m2[2][i]; in omxVCM4P10_InvTransformDequant_LumaDC() 107 m1[3][i] = m2[1][i] - m2[3][i]; in omxVCM4P10_InvTransformDequant_LumaDC() 109 m2[0][i] = m1[0][i] + m1[1][i]; in omxVCM4P10_InvTransformDequant_LumaDC() [all …]
|
D | omxVCM4P10_SATD_4x4.c | 79 OMX_S32 d [4][4], m1[4][4], m2[4][4]; in omxVCM4P10_SATD_4x4() local 109 m2[i][0] = m1[i][0] + m1[i][1]; /* a+b+c+d */ in omxVCM4P10_SATD_4x4() 110 m2[i][1] = m1[i][2] + m1[i][3]; /* a+b-c-d */ in omxVCM4P10_SATD_4x4() 111 m2[i][2] = m1[i][2] - m1[i][3]; /* a-b-c+d */ in omxVCM4P10_SATD_4x4() 112 m2[i][3] = m1[i][0] - m1[i][1]; /* a-b+c-d */ in omxVCM4P10_SATD_4x4() 119 m1[0][i] = m2[0][i] + m2[2][i]; in omxVCM4P10_SATD_4x4() 120 m1[1][i] = m2[1][i] + m2[3][i]; in omxVCM4P10_SATD_4x4() 121 m1[2][i] = m2[0][i] - m2[2][i]; in omxVCM4P10_SATD_4x4() 122 m1[3][i] = m2[1][i] - m2[3][i]; in omxVCM4P10_SATD_4x4() 124 m2[0][i] = m1[0][i] + m1[1][i]; in omxVCM4P10_SATD_4x4() [all …]
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/ |
D | MatrixTest.java | 43 Matrix m2 = new Matrix(20, 0); in testDegenerate() local 44 assertEquals(m1, m2.transpose()); in testDegenerate() 53 Matrix m2 = new Matrix(2, new double[]{10, 20, 30, 40}); in testAddition() local 55 assertEquals(m3, m1.plus(m2)); in testAddition() 64 Matrix m2 = new Matrix(2, new double[]{10, 20, 30, 40}); in testSubtraction() local 66 assertEquals(m1, m3.minus(m2)); in testSubtraction() 75 Matrix m2 = new Matrix(2, new double[]{-3, 3, 7, 1}); in testMultiplication() local 77 assertEquals(m3, m1.dot(m2)); in testMultiplication() 88 Matrix m2 = m1.inverse(); in testInverse() local 89 Matrix m12 = m1.dot(m2); in testInverse() [all …]
|
/frameworks/native/libs/math/tests/ |
D | mat_test.cpp | 71 mat4 m2(vec4(2)); in TEST_F() local 72 mat4 m3(m2); in TEST_F() 74 EXPECT_EQ(m1, m2); in TEST_F() 75 EXPECT_EQ(m2, m3); in TEST_F() 84 mat4 m2(vec4(2)); in TEST_F() local 86 m1 += m2; in TEST_F() 89 m2 -= m1; in TEST_F() 90 EXPECT_EQ(mat4(-2), m2); in TEST_F() 122 mat4 m2(vec4(1, 5, 9, 13), vec4(2, 6, 10, 14), vec4(3, 7, 11, 15), vec4(4, 8, 12, 16)); in TEST_F() local 123 EXPECT_EQ(m1, transpose(m2)); in TEST_F() [all …]
|
/frameworks/support/room/runtime/src/test/java/android/arch/persistence/room/ |
D | BuilderTest.java | 70 Migration m2 = new EmptyMigration(1, 2); in migration() local 72 .addMigrations(m1, m2).build(); in migration() 76 assertThat(migrations.findMigrationPath(1, 2), is(asList(m2))); in migration() 77 assertThat(migrations.findMigrationPath(0, 2), is(asList(m1, m2))); in migration() 85 Migration m2 = new EmptyMigration(1, 2); in migrationOverride() local 88 .addMigrations(m1, m2, m3).build(); in migrationOverride() 92 assertThat(migrations.findMigrationPath(1, 2), is(asList(m2))); in migrationOverride() 99 Migration m2 = new EmptyMigration(1, 2); in migrationJump() local 103 .addMigrations(m1, m2, m3, m4).build(); in migrationJump() 107 assertThat(migrations.findMigrationPath(1, 3), is(asList(m2, m3))); in migrationJump()
|
/frameworks/layoutlib/bridge/tests/src/android/graphics/ |
D | Matrix_DelegateTest.java | 37 Matrix m2 = new Matrix(m1); in testCopyConstructor() local 42 m2.getValues(v2); in testCopyConstructor()
|
/frameworks/base/rs/java/android/renderscript/ |
D | Matrix4f.java | 329 Matrix4f m2 = new Matrix4f(); in loadProjectionNormalized() local 339 m2.loadRotate(180, 0, 1, 0); in loadProjectionNormalized() 340 m1.loadMultiply(m1, m2); in loadProjectionNormalized() 342 m2.loadScale(-2, 2, 1); in loadProjectionNormalized() 343 m1.loadMultiply(m1, m2); in loadProjectionNormalized() 345 m2.loadTranslate(0, 0, 2); in loadProjectionNormalized() 346 m1.loadMultiply(m1, m2); in loadProjectionNormalized()
|
/frameworks/rs/support/java/src/android/support/v8/renderscript/ |
D | Matrix4f.java | 330 Matrix4f m2 = new Matrix4f(); in loadProjectionNormalized() local 340 m2.loadRotate(180, 0, 1, 0); in loadProjectionNormalized() 341 m1.loadMultiply(m1, m2); in loadProjectionNormalized() 343 m2.loadScale(-2, 2, 1); in loadProjectionNormalized() 344 m1.loadMultiply(m1, m2); in loadProjectionNormalized() 346 m2.loadTranslate(0, 0, 2); in loadProjectionNormalized() 347 m1.loadMultiply(m1, m2); in loadProjectionNormalized()
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
D | AdvancedBlendActivity.java | 71 Matrix m2 = new Matrix(); in ShadersView() local 72 m2.setScale(0.5f, 0.5f); in ShadersView() 73 mScaledShader.setLocalMatrix(m2); in ShadersView()
|
D | MoreShadersActivity.java | 73 Matrix m2 = new Matrix(); in ShadersView() local 74 m2.setScale(0.1f, 0.1f); in ShadersView() 75 mScaledShader.setLocalMatrix(m2); in ShadersView()
|
/frameworks/data-binding/ |
D | propLoader.gradle | 31 databindingProperties.megaRepoDir = "${databindingProperties.externalPrebuiltsBase}/tools/common/m2… 44 "${dataBindingConfig.externalPrebuiltsBase}/tools/common/offline-m2", 47 "${dataBindingConfig.externalPrebuiltsBase}/tools/common/m2/repository",
|
D | build.gradle | 233 'tools/common/m2/repository/com/googlecode/jarjar/jarjar/1.4/jarjar-1.4.jar').
|
/frameworks/support/buildSrc/ |
D | repos.gradle | 39 "${repos.prebuiltsRoot}/tools/common/m2/repository", 40 "${repos.prebuiltsRoot}/tools/common/m2/internal",
|
/frameworks/multidex/ |
D | build.gradle | 22 maven { url '../../prebuilts/tools/common/m2/repository' } 23 maven { url '../../prebuilts/tools/common/m2/internal' }
|
/frameworks/base/services/tests/servicestests/src/com/android/server/search/ |
D | SearchablesTest.java | 172 … boolean m2 = (ai.getSuggestActionMsg() != null) && (ai.getSuggestActionMsg().length() > 0); in checkSearchable() 175 assertTrue(m1 || m2 || m3); in checkSearchable()
|
/frameworks/native/libs/vr/libbufferhub/ |
D | bufferhub_tests.cpp | 260 Metadata m2 = {}; in TEST_F() local 261 EXPECT_EQ(0, c->Acquire(&fence, &m2)); in TEST_F() 262 EXPECT_EQ(m.field1, m2.field1); in TEST_F() 263 EXPECT_EQ(m.field2, m2.field2); in TEST_F()
|
/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/ |
D | WallpaperCropActivity.java | 743 Matrix m2 = new Matrix(); local 744 m2.setRotate(mRotation); 751 c1.setConcat(m2, m1);
|
/frameworks/base/services/tests/servicestests/res/raw/ |
D | backup_telephony_with_password | 161 …,]kE/h��X��thD��'��Zӑ6���镰yּj��RNL�?4��Ή'p��� 8���B.���T���+�����e��Z�! ���A�z�W*mˬ�m2�t…
|
D | backup_telephony_no_password | 83 …9_n��en���!i�3͌j�Ӧ_����o>my�L�5�+�J�f6�Dx6#B��H��Hǎ!��f�#����h���m2�6��k�Fvk������l�"�…
|