Home
last modified time | relevance | path

Searched refs:a2 (Results 1 – 25 of 74) sorted by relevance

123

/cts/tests/tests/renderscript/src/android/renderscript/cts/
DVLoadTest.java110 private void verify(byte[] a1, byte[] a2, String s) { in verify() argument
111 outAlloc.copyTo(a2); in verify()
113 if (a1[i] != a2[i]) { in verify()
114 throw new RSRuntimeException(s + a1[i] + ", " + a2[i] + ", at " + i); in verify()
116 a2[i] = 0; in verify()
118 outAlloc.copyFrom(a2); in verify()
121 private void verify(short[] a1, short[] a2, String s) { in verify() argument
122 outAlloc.copyTo(a2); in verify()
124 if (a1[i] != a2[i]) { in verify()
125 throw new RSRuntimeException(s + a1[i] + ", " + a2[i] + ", at " + i); in verify()
[all …]
DGetSetTest.java144 private void verify(byte[] a1, byte[] a2, Allocation alloc, String s, int vsize) { in verify() argument
145 alloc.copyTo(a2); in verify()
147 if (a1[i] != a2[i]) { in verify()
151 throw new RSRuntimeException(s + a1[i] + ", " + a2[i] + ", at " + i); in verify()
153 a2[i] = 0; in verify()
155 alloc.copyFrom(a2); in verify()
158 private void verify(short[] a1, short[] a2, Allocation alloc, String s, int vsize) { in verify() argument
159 alloc.copyTo(a2); in verify()
161 if (a1[i] != a2[i]) { in verify()
165 throw new RSRuntimeException(s + a1[i] + ", " + a2[i] + ", at " + i); in verify()
[all …]
DImageProcessingTest.java65 private Allocation a1, a2; field in ImageProcessingTest
76 a2 = Allocation.createTyped(mRS, t); in setUp()
82 a2.destroy(); in tearDown()
92 a2_copy = Allocation.createTyped(mRS, a2.getType()); in testBlur()
670 a2_copy = Allocation.createTyped(mRS, a2.getType()); in testColorMatrix()
681 a2_copy.copy2DRangeFrom(0, 0, a2.getType().getX(), a2.getType().getY(), a2, 0, 0); in testColorMatrix()
692 a2_copy.copy2DRangeFrom(0, 0, a2.getType().getX(), a2.getType().getY(), a2, 0, 0); in testColorMatrix()
707 a2_copy = Allocation.createTyped(mRS, a2.getType()); in testConvolve3x3()
731 a2_copy = Allocation.createTyped(mRS, a2.getType()); in testConvolve5x5()
757 a2_copy = Allocation.createTyped(mRS, a2.getType()); in testLUT()
[all …]
DLaunchClip.java45 int a0, int a1, int a2, int a3) { in setup() argument
54 mDimA2 = a2; in setup()
/cts/tests/tests/animation/src/android/animation/cts/
DAnimatorSetTest.java289 ValueAnimator a2 = ValueAnimator.ofFloat(0f, 100f); in testPauseAndResume() local
290 a2.setDuration(50); in testPauseAndResume()
298 set.playTogether(a1, a2); in testPauseAndResume()
349 ValueAnimator a2 = ValueAnimator.ofFloat(0f, 100f); in testPauseBeforeStart() local
350 a2.setDuration(50); in testPauseBeforeStart()
352 set.playSequentially(a1, a2); in testPauseBeforeStart()
376 ValueAnimator a2 = ValueAnimator.ofFloat(50, 100f); in testSeekAfterPause() local
377 a2.setDuration(50); in testSeekAfterPause()
378 set.playSequentially(a1, a2); in testSeekAfterPause()
387 assertEquals((float) a2.getAnimatedValue(), 60f, EPSILON); in testSeekAfterPause()
[all …]
DValueAnimatorTest.java380 ValueAnimator a2 = ValueAnimator.ofPropertyValuesHolder(); in testValuesSetterAndGetter() local
383 a2.setValues(p1, p2); in testValuesSetterAndGetter()
384 PropertyValuesHolder[] holders = a2.getValues(); in testValuesSetterAndGetter()
/cts/tests/tests/security/res/raw/
Dopenssl_heartbleed_test_cert.pem44 3d:ca:b1:a2:c4:06:cf:64:d4:bb:18:aa:05:46:7a:
50 7f:dd:5f:7b:eb:7c:a1:39:a2:8b:43:2e:f4:f2:71:
57 65:c1:31:ba:a9:09:e8:b8:8d:a2:4b:99:40:f2:98:
70 b6:a3:40:1d:2a:c6:45:95:4a:4c:de:a2:77:5e:fa:2c:2e:a7:
80 f3:6d:c3:61:9f:a2:ab:3d:a8:7c:ea:45:70:a5:e3:ac:5f:67:
/cts/tests/sensor/src/android/hardware/cts/
DSensorManagerStaticTest.java474 int a1, a2; // AXIS_X/Y/Z in testRemapCoordinateSystem() local
489 a2 = j%3 + 1; in testRemapCoordinateSystem()
492 if (a1 == a2) continue; in testRemapCoordinateSystem()
497 b2 = a2 | (((k & 1) != 0) ? 0x80 : 0); in testRemapCoordinateSystem()
499 b3 = (6 - a1 -a2) | in testRemapCoordinateSystem()
500 ( (((a2 + 3 - a1) % 3 == 2) ? 0x80 : 0) ^ (b1 & 0x80) ^ (b2 & 0x80)); in testRemapCoordinateSystem()
/cts/tests/tests/media/src/android/media/cts/
DNativeDecoderTest.java98 private void compareArrays(String message, int[] a1, int[] a2) { in compareArrays() argument
99 if (a1 == a2) { in compareArrays()
104 assertNotNull(message + ": array 2 is null", a2); in compareArrays()
106 assertEquals(message + ": arraylengths differ", a1.length, a2.length); in compareArrays()
110 if (a1[i] != a2[i]) { in compareArrays()
112 Log.i("@@@@", Arrays.toString(a2)); in compareArrays()
/cts/tests/tests/graphics/src/android/graphics/cts/
DBitmapFactoryTest.java1074 final int a2 = Color.alpha(expect); in distance() local
1076 multiplyAlpha(Color.red(expect), a2); in distance()
1078 multiplyAlpha(Color.green(expect), a2); in distance()
1080 multiplyAlpha(Color.blue(expect), a2); in distance()
/cts/tests/app/src/android/app/cts/
DAppTaskTests.java137 final Activity a2 = mActivityRule.launchActivity(null); in testMoveToFront() local
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/fill_array_data/d/
DT_fill_array_data_9.dfh9 // parsed: offset 12, len 20: signature : 38a2...97b7
/cts/tests/tests/graphics/res/raw/
Dsample_raf.raf37 …qt? k�)���o�w��a��@����[�!�e���C^g�K/�~�h�|5����X�� �k���R��q�1��#�}Ve�a2e:8X��ǝ��W��~�G��0s…
43 …�a��1���=���k?KI�_]��3ii�е��C,l���x'8�_|���>6x_Z��|-�-O�� ?�5Κfު��a2�n7>}r=+��U��V�}����…
2420 �sQ��:��h �=\�@��5����e���ʉ5��|?z\\}�n܈��}z���<���ܪ/�\��W5{#���L�-�,�$���jL|�G ���a2������A�W��…
2745 2)S!30�a2 S"�1��2
2817 …0�9M�%��%V�9E�&�S%K:X�%��$R�:[&�'R�9eB'�s&e�;fb%�#'K8Pb'��&o�9l�'��&L2:a2(��%jb9V�&��&��8p�&��…
2826 �#/�!0 c"�/�.�"�1�a2#+�2
2870 1 �1�"�B2"�1S##3B0*S#�0��/�")�1�a2�")S0R0"�1"1�!�1R1Bc"2!1 s!�1r/")�1�/'C#3…
2873 …��"C1��/�� �/�1�"S0��.S!�.�/� �0�/��!�-��-3!��0�!/��"�-�.�"!�/�a2�!�-�!.�B"��.��0�B"�…
2876 …�#�0�!!��!�0"!"��.�"� B0b!��!��0��!�2#�1� �"��/ R"# 0R"��"�a2��"�"�2�1"�"!�.�!�…
2877 …�)Q��+�a15#�4�!4J�E�2�!4LS94��3'ss5�a3XSP�2�4R�H4�a4F�54�a2.�#0��0'�+5�!3=S…
[all …]
/cts/tests/tests/media/assets/hls_variant/765178/
D09.ts487 …���C����ށo8�VՐ_tJv��h �D5��[�7 ����D��ui��a\p.��Q#�� �:V�����,c�JYL a2{YoyxBg�,�?��H'w/…
579 …�n�����wie���O앜 �7%Җ�K��4�9�7� ʱ6ns��>�s��І}�`��!G(���L�{���s�����\��b�a2}�td8>q�����r�C!(f��…
918 ��|�����a2���\�.X�J6��V�@G�K�C�p�.�Ť��l]�iɠ�u�Fa �f������� ��I$w���#^R�@��GA�����…
D04.ts1704 ۯ���G��+k���,iu>T�A��a2���y���IJ�9��͕r0f���z�J�Ƒ�L�edB�
2512 ���IGA�����!��z��P@"�,-�DK�15Q��o��0��a2��0
3071 �Ѳn��j������I䎟��O��4����a2����i�̂B�G���>`�B&aB�Ϋ���G���q�#dS�oQ�[&����:�������/�b����ǫ��…
D22.ts2853 …��������� yC���[bN xn�_�]A�4#i^��t���z���K�u�G[���u��Z���c�5/|1-�s�a2��b�y�����ME��T…
3481 �ܟR���;Q���t]6�TX��~T�^�:bL�fC��`o�|=N��ڨۇm��G��:b]gV�ϸY}ς�n3)���$w�>�ϝo�a�N�1'6}�� a2/PZ5R…
/cts/tests/tests/media/assets/hls_variant/165340/
D06.ts409 �߷�dd���a2��G�������S��5G�22���������������������������������������������������Q�xq�4�y�+�…
/cts/tests/tests/media/assets/hls_variant/387360/
D12.ts976 ��� ��O6j�3�V*z$0L�ٴ4{<�f�����f,: @�-[�L��v�ޒ�ݵ�a2��7F#�P��m�xoRm���h��LP����=�� 6n�3e�…
D06.ts70 …+��ot�m�3d�\��M?*���� ��SЗS��!�k�[F�1b�Mp�� �>�Ԍr���o��庚���[��v<]�a2��V���zG��a��\…
D11.ts174 t�ڑj�霸׌����h;���ܦ2�i(4\=a2�v��#A�?�6�ל�h�j�GjYYX�c�fG����� �LU���;�Y�+���r !m�G���q�t…
/cts/tests/tests/media/assets/hls_variant/1676816/
D04.ts5580 …�N\���H���W���:lN���3�;��m���8�������|GA�����!��z��P@"�,-�DK�15Q��o��0��a2��0
5824 …��b�������3�?B�ƕu7�m n�G�_��3�icg��Ñ@��0�D}��h�YM@�& ��o�o���H"0�'$�a2��ƀ6�$�=�K ��MT~
6057 ��L#V5{�a'v���(V��\/�Yn�D���{�R��h=���h��a2��?-���s�a�>+��HA�4�Ҵ#��d�Ui�G����<{��*yb…
7586 ���+��q��Rxxk�И�5�a2���$�]<vϤsN^9B>*�}M�y�|�\ϲ`�h�e��l�rz�9�|#�4M��)������t�K�[�B<h�0X�J�t…
/cts/tests/tests/media/assets/unmuxed_1500k/
D00.ts422 …���K�.K�b�sV�3UB ���]G����%����^>�U�+�X��s����6��}����/'�%���a2���r�:�Ng��Z����}�ϴj…
/cts/tests/tests/media/assets/hls_variant/344388/
D21.ts885 …�����������������������������������������������������Xw���R��6��zT0O��a2��:P��¸�пm��o^&���…
D02.ts1435 {�豊���k�����[f;����u�G���|�[ʮ��3�u.�Џљ�d��i]�z�Ǔ�1o�1�\A��J�θQ�b�ݗ#���"#F�a2�=�ˌ�
D09.ts1333a2�?�[kGU��$s�����a����-?�.�Z�B���'Y�!"�l2�rYm�+�'��7���q�W� t���[�g

123