Home
last modified time | relevance | path

Searched refs:Y (Results 1 – 25 of 118) sorted by relevance

12345

/cts/tests/tests/rscpp/src/android/cts/rscpp/
DRSColorMatrixTest.java32 private final int Y = 1024; field in RSColorMatrixTest
34 …native boolean colorMatrixTest(String path, int X, int Y, byte[] input, byte[] output, float[] coe… in colorMatrixTest() argument
36 int[] baseAlloc = new int[X * Y * 4]; in testRSColorMatrix0()
38 byte[] byteAlloc = new byte[X * Y * 4]; in testRSColorMatrix0()
39 for (int i = 0; i < X * Y * 4; i++) { in testRSColorMatrix0()
56 build.setY(Y); in testRSColorMatrix0()
66 byte[] nativeByteAlloc = new byte[X * Y * 4]; in testRSColorMatrix0()
67 …colorMatrixTest(this.getContext().getCacheDir().toString(), X, Y, byteAlloc, nativeByteAlloc, coef… in testRSColorMatrix0() local
76 int[] baseAlloc = new int[X * Y * 4]; in testRSColorMatrix1()
78 byte[] byteAlloc = new byte[X * Y * 4]; in testRSColorMatrix1()
[all …]
DRSBlurTest.java32 private final int Y = 1024; field in RSBlurTest
34 …native boolean blurTest(String path, int X, int Y, byte[] input, byte[] output, boolean singleChan… in blurTest() argument
36 int[] baseAlloc = new int[X * Y]; in testRSBlurOneChannel()
38 byte[] byteAlloc = new byte[X * Y]; in testRSBlurOneChannel()
39 for (int i = 0; i < X * Y; i++) { in testRSBlurOneChannel()
45 build.setY(Y); in testRSBlurOneChannel()
54 byte[] nativeByteAlloc = new byte[X * Y]; in testRSBlurOneChannel()
55 … blurTest(this.getContext().getCacheDir().toString(), X, Y, byteAlloc, nativeByteAlloc, true); in testRSBlurOneChannel() local
65 int[] baseAlloc = new int[X * Y * 4]; in testRSBlurFourChannels()
67 byte[] byteAlloc = new byte[X * Y * 4]; in testRSBlurFourChannels()
[all …]
DRSLUTTest.java32 private final int Y = 1024; field in RSLUTTest
34 native boolean lutTest(String path, int X, int Y, byte[] input, byte[] output); in lutTest() argument
36 int[] baseAlloc = new int[X * Y * 4]; in testRSLUT()
38 byte[] byteAlloc = new byte[X * Y * 4]; in testRSLUT()
39 for (int i = 0; i < X * Y * 4; i++) { in testRSLUT()
45 build.setY(Y); in testRSLUT()
58 byte[] nativeByteAlloc = new byte[X * Y * 4]; in testRSLUT()
59 … lutTest(this.getContext().getCacheDir().toString().toString(), X, Y, byteAlloc, nativeByteAlloc); in testRSLUT() local
DRSBlendTest.java32 private static final int Y = 256; field in RSBlendTest
34 … native boolean blendTest(String path, int X, int Y, byte[] input, byte[] output, int optionFlag); in blendTest() argument
37 int[] baseAlloc = new int[X * Y * 4]; in testRSBlend()
39 byte[] byteAlloc = new byte[X * Y * 4]; in testRSBlend()
40 for (int i = 0; i < X * Y * 4; i++) { in testRSBlend()
44 int[] baseAlloc2 = new int[X * Y * 4]; in testRSBlend()
46 byte[] byteAlloc2 = new byte[X * Y * 4]; in testRSBlend()
47 for (int i = 0; i < X * Y * 4; i++) { in testRSBlend()
53 build.setY(Y); in testRSBlend()
111 … blendTest(this.getContext().getCacheDir().toString(), X, Y, byteAlloc, byteAlloc2, iter); in testRSBlend() local
DRS3DLUTTest.java32 private final int Y = 1024; field in RS3DLUTTest
36 …native boolean lutTest(String path, int X, int Y, int lutSize, byte[] input, byte[] input2, byte[]… in lutTest() argument
38 int[] baseAlloc = new int[X * Y * 4]; in testRSLUT()
42 byte[] byteAlloc = new byte[X * Y * 4]; in testRSLUT()
44 for (int i = 0; i < X * Y * 4; i++) { in testRSLUT()
53 build.setY(Y); in testRSLUT()
69 byte[] nativeByteAlloc = new byte[X * Y * 4]; in testRSLUT()
70 …lutTest(this.getContext().getCacheDir().toString(), X, Y, lutSize, byteAlloc, byteColorCube, nativ… in testRSLUT() local
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/Path/
DComplexMovementPath.java23 import static com.android.cts.verifier.sensors.sixdof.Utils.MathsUtils.Y;
193 rotation[Y] = location2[Y] - location1[Y]; in calculateRingRotation()
236 float[] rotationInverse = {0 - rotation[X], 0 - rotation[Y]}; in calculateRectangleHitbox()
237 float[] rotationNinety = {rotation[Y], 0 - rotation[X]}; in calculateRectangleHitbox()
238 float[] rotationNinetyInverse = {0 - rotation[Y], rotation[X]}; in calculateRectangleHitbox()
242 midFront[Y] = centre[Y] + (lengthScaleFactor * rotation[Y]); in calculateRectangleHitbox()
245 midRear[Y] = centre[Y] + (lengthScaleFactor * rotationInverse[Y]); in calculateRectangleHitbox()
250 frontLeft[Y] = midFront[Y] + (widthScaleFactor * rotationNinetyInverse[Y]); in calculateRectangleHitbox()
254 frontRight[Y] = midFront[Y] + (widthScaleFactor * rotationNinety[Y]); in calculateRectangleHitbox()
258 rearLeft[Y] = midRear[Y] + (widthScaleFactor * rotationNinetyInverse[Y]); in calculateRectangleHitbox()
[all …]
/cts/tests/tests/renderscript/src/android/renderscript/cts/
DSingleSourceForEachTest.java28 private static final int Y = 768; field in SingleSourceForEachTest
45 i32TypeBuilder.setX(X).setY(Y); in setUp()
51 testInputArray = new int[X * Y]; in setUp()
52 testInputArray2 = new int[X * Y]; in setUp()
53 testOutputArray = new int[X * Y]; in setUp()
54 baselineOutputArray = new int[X * Y]; in setUp()
82 checkArray(baselineOutputArray, testOutputArray, Y, X, X); in testSingleInputKernelLaunch()
92 checkArray(baselineOutputArray, testOutputArray, Y, X, X); in testMultiInputKernelLaunch()
104 sc.setY(0, Y / 2); in testKernelLaunchWithOptions()
106 s.invoke_testLaunchOptions(testInputAlloc, testOutputAlloc, X, Y); in testKernelLaunchWithOptions()
[all …]
/cts/tests/tests/rscpp/librscpptest/
Drs_jni.cpp84 jint Y, in Java_android_cts_rscpp_RSBlurTest_blurTest() argument
103 sp<Allocation> inputAlloc = Allocation::createSized2D(rs, e, X, Y); in Java_android_cts_rscpp_RSBlurTest_blurTest()
104 sp<Allocation> outputAlloc = Allocation::createSized2D(rs, e, X, Y); in Java_android_cts_rscpp_RSBlurTest_blurTest()
107 inputAlloc->copy2DRangeFrom(0, 0, X, Y, input); in Java_android_cts_rscpp_RSBlurTest_blurTest()
112 outputAlloc->copy2DRangeTo(0, 0, X, Y, output); in Java_android_cts_rscpp_RSBlurTest_blurTest()
123 jint X, jint Y, jbyteArray inputByteArray, in Java_android_cts_rscpp_RSConvolveTest_convolveTest() argument
139 sp<Allocation> inputAlloc = Allocation::createSized2D(rs, e, X, Y); in Java_android_cts_rscpp_RSConvolveTest_convolveTest()
140 sp<Allocation> outputAlloc = Allocation::createSized2D(rs, e, X, Y); in Java_android_cts_rscpp_RSConvolveTest_convolveTest()
142 inputAlloc->copy2DRangeFrom(0, 0, X, Y, input); in Java_android_cts_rscpp_RSConvolveTest_convolveTest()
157 outputAlloc->copy2DRangeTo(0, 0, X, Y, output); in Java_android_cts_rscpp_RSConvolveTest_convolveTest()
[all …]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/audiolib/
DWaveScopeView.java120 float Y = zeroY; in drawChannel16() local
123 mPointsBuffer[pntIndex] = Y; in drawChannel16()
126 Y = zeroY - (samples[smpl] * yScale); in drawChannel16()
128 mPointsBuffer[pntIndex] = Y; in drawChannel16()
149 float Y = zeroY; in drawChannelFloat() local
152 mPointsBuffer[pntIndex] = Y; in drawChannelFloat()
155 Y = zeroY - (samples[smpl] * yScale); in drawChannelFloat()
157 mPointsBuffer[pntIndex] = Y; in drawChannelFloat()
/cts/hostsidetests/securitybulletin/res/
Dcve_2017_0859.mp44 …ܿ�4d@n���S�߶��?����{��̃�$Kp�����o��W�Ť�n��;*����nc���Y�Rb�_�$9���r� Y���+�j�[�xv�����C�Y�
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/
DMathsUtils.java30 public static final int Y = PoseData.INDEX_TRANSLATION_Y; field in MathsUtils
52 float[] inDefaultOrientation = new float[]{location[X], location[Z], -location[Y]}; in convertToOpenGlCoordinates()
66 inCurrentOrientation = new float[]{coordinates[Y], -coordinates[X], in rotateCoordinates()
70 inCurrentOrientation = new float[]{coordinates[X], coordinates[Y], in rotateCoordinates()
74 inCurrentOrientation = new float[]{-coordinates[Y], coordinates[X], in rotateCoordinates()
230 float yDifference = point2[Y] - point1[Y]; in distanceCalculationOnXYPlane()
244 float yDifference = point2[Y] - point1[Y]; in distanceCalculationInXYZSpace()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Renderer/RenderUtils/
DModelMatrixCalculator.java20 import static com.android.cts.verifier.sensors.sixdof.Utils.MathsUtils.Y;
91 … Matrix.translateM(extrinsicsBasedMatrix, 0, requiredTranslations[X], requiredTranslations[Y], in calculateModelMatrix()
113 newModelMatrix[MATRIX_4X4_TRANSLATION_Y] += translationInOpenGlCoordinates[Y]; in calculateModelMatrix()
133 mDevice2IMUMatrix[MATRIX_4X4_TRANSLATION_Y] = translation[Y]; in setDevice2IMUMatrix()
143 mColorCamera2IMUMatrix[MATRIX_4X4_TRANSLATION_Y] = translation[Y]; in setColorCamera2IMUMatrix()
/cts/tests/tests/media/assets/hls_variant/387360/
D21.ts3 1A{�Ad!��� ����gM@�P��������������h� ��e���h8� 0��I���~��qH8�wV֗�������Y����͹…
8 �W�!�wU-\K��/�[t�{��JO�Q�GG�^=`&Aq���Hw`��2�� v ]/�7W�es=�t��T�,����K /g˦iF���L?Y…
20 ���(F!��%ʅǎʖ.�Vf��;Y��G�\�q�s����/+�(�,D*��?�7S��~�P,*z�
78 …��HC��J�a�b<���~�Ҙw�G2*/�yy-ݳ@A�kg��n�AՈ����G���\�J���Ҋ���������A�Y="F�h~> yR;h��v�itu�A…
84 …z�) �y���jʁ���Xy��p�y����vY׼�&��8�l���� ���g��D G�%����8��:�)��&� �&�Y&����h�"/[U�.
105 ���/���r�^ 0�g���Y
117 …��f�G�n��T��S�KQ��7�/<`d �bn�o2 ��}MK�H���xU�fz6��_R$��@*�ziY�<,<�'qPD[_�]�-u9f�䁝D…
118 …�e��`/��wG���`��m|����۬P��y��C��+�Я��v�P�j��g�=�[q4��@b��=�4^s �]�'��Y���^ �1�&��J�n���c˭�…
131 ���6���.%�.3�����Y�S/�2L���S� ��u��M�T��)���.a�
135 …������������������������������������������������������������������������������hv���B#Y�bl���kuq�!
[all …]
D11.ts3 …��������������h� ��e���h8� 0��I���~��qH8�wV֗�������Y����͹!�t����@'t}Y{6�^^���J�V-�
8 \K�޴7�G�sMz$���9���&�`�J< �\E�n��{�����ۭ�K����Y\�o{]8xDc��d��&@^ϗL���{��j�[k��*v;�܀��.+…
29 …�0H`�H��je���P9�o��G�6�O-v�)>yvNl��eD \5 � ���H|%<q8��L��t��o޸�=���Y`�DT)��v?�fT�p+���…
68 …5g��%��0�A�������:��b��M������*�����o�I/椎��.���Ș�Y>�:��2b.��J�Fr�;f{���@��[Bj!L�@;~�h��Y��…
102 ��Y��������O��4�� �������� �����^�8�.�OU��Ы�>ep�ٟ�b��*�p��:k�n�=x�����H�G�O#Lx�
113 …��u���Phz�`�7�o :=P� �0��|n^/�7 �ʃ;\-G�Y{H����]K�p%.[��ؗ"�+���bb�SW&�<�����o���׆fW������…
164 �\�v���L'�x Up�>��U�$`9)v�p�h1�����5��������rQs����̭^�{F��{�� �!b�'�%�����^d�Y��cd�|�b…
174 t�ڑj�霸׌����h;���ܦ2�i(4\=a2�v��#A�?�6�ל�h�j�GjYYX�c�fG����� �LU���;�Y�+���r !m�G���q�t…
175 …`���GG���&����K������h��c �rz�y���O�� "������):�d!�FϾ�GUtSʅ0�4hY�]Z��8�I$��)�"�&;0Vs…
187 �|�� �c�f��XM7��.���*̥�af�0�_7��1.�ݧ^��`���k͓��R$"x)v�d��Y��
[all …]
D16.ts3 1��q����� ����gM@�P��������������h� ��e���h8� 0��I���~��qH8�wV֗�������Y�����…
16 …�LE9�R�͡v�#֠���G��L�$��yh!��M%�-�DL����}3N�C!̔��x����Yg ����K�v-�Y��M��_U�L{O2�›�����…
23 w,;,Ye,e��������G�E-�_,'���"��&+:O���7Y)i$q�#����$�<yR�\U��rO er�7Q^����Aa:��
26 I.e k����w��—q9Ve�`I,����Y��%ӹU Q��g�����ve����%^̜1n�jqؚh�a�fuU\���?K��~r�ZpϤ�Kic;���1���…
28Y"[C�WQ���] ��j������Y�_�������a$F���!�+ۀ�v$�G@8�LldC[�"a�+V����XZg�t��j}8W�?�Tr��S�…
29 …ʢ�Ȱ3�Kc���E�7D�U�$":�K�Չ���]ͺ��/�����C�>}h��H�����n��/��γ.�U6H0X�Y)F3����,G�%�2��8�…
42 �Tx�K���t;�6G��t�+~#�vK�w5��I,LN�sӖ��o�">���Z�����Ύ��9����oyf�'⊏p]�D���W��9qM�Y�ϱ� �…
45 …��� f�{�؂]����b��5�H�ۑ�|t�#�'�C���1��[������ylq�:�u���n��X�<uS��Oy���:�I[Y =L>E�7E?v�ʰK��[%bƤ…
46 …��x����#�@��/���!���sIYX`��y*9� aBG/��T�,,e�G�B6�"�np���W�}Vk���P4���G鷔[j�n�r)Y��R�����;3
73 …B�(R�PX��������G/� �n�mTq���w �a �� 7�$����4x`�X��27m��<,��aD�??�p,Y�ٻ�G�:s�������������…
/cts/tests/tests/media/assets/hls_variant/344388/
D05.ts39 …�-��uʬ�0W��0�Қ��#.�~�/Z�PY�%�Y*���͹�q�2���AAe����,�7�N��mH�k��--�i�0a�/��!��3ٕ?df�㌾…
63 �.�|���p��!_7���K0��������CJ%5lA������ܭZ�YVtG③G�mK���i���W�^γ��^}��"�����R·:H!�t(�Y�s(��-����…
93 �]��&ǿ��������:�e�~������r3�1�Y���I�+��*F�_|���(F���-�๽��=�;
96 ��Y��O�ˌ��Կ9����2]MHF��o���_�@�j���U�!k��S��^ ���:E�nJ`H�[�G�<���B��0 !�Q�{��:��_��)�…
165 …k���?x/Fw�K[���/�`d��w\���Yϵ�d��| (FF�C�j�2���� aͧ��P4��<=�:yA�^�4YT�D��:���r���}{O��…
186 䱞mbY�4�Qςˌ�/O�so���.8� ��o"Ƚ;:.�i���̎�^�.)v�0YsP�?"���<ҥ1e?��v���i
200 >'0;�� o�Զ��N�jl:�>�x�Kz����0��w2�G���,-rA��qPES�O�@Z~;�d���rk-�;}�r�p��R S�d�� ��Y���Yz2�…
210 Ӟ�*kZ��7�-�r[�.��͐i�Y�u�L ������x.ʦ�h��e[s�h6�'�eo�2;^%נ��՜x��#���G�0z��������������������…
237 …�H�˾�y}˒����� �{B�l��`k�P�0�|{1+�Ȍ"���=ē5�S�G�;�ކ/9O99�0� �uu/e�@����Y��+�xܘ��<܂�svʨ��~G�…
243 �g �Zi���h���ّ���X�����[Y�5�g�I{rμ��æJ�yT!@(j����f�%��rw�0�ս�nJ'+�u�oG��`K�G�2�����������…
D08.ts20 … c_��@��~X�˒��6���,�]G�,?����^��)��&e�@v2�7x���������z���Z�g,WBڟ̸��/�L�4<EP}K�S2�Y�h�68�
44 M�6�Y��|`_�W�<S�n���1+)������USب�'�=)��)hgf(���ʸtn��Ŏd�;M<$y�/��f�Z ]�=R4���35�F:Of��2…
61 X�7�7|z�����Xԛ��>(�SM]��z�bد���V��%Y@��ݘ@iM#�!E�aG�6Jh�`l�^%I��hE�p5.�+�S�厱 3����;%cZ��z�Ă+…
67 …K ��� S_a���|�А_�� E���+J+�7r`J���ۋ�;F�fL�b1�]�^��h���;Z5��u�R3$w�>Y��+�Y� p6��/͞#�*���6…
73 …s��B�E�[m�`��J�7 ��U�@�4�R �,,`�腨�(�� (��A�oa<�v%OX�������q��=G8x�����Y���%���GA����Є�…
80 66撼;-YBךN(���t���)�6y�ΎM �)�����O�CVY
107 …�T�3mS�n�g�� ��:�¾EL��!�������'��-e �EA�lږ�'��t �&��7�,�y�x�i�a�Y�e�ǒ3L|�s����J�1…
116 …נ�Y�.��G���W�bvo"����l��;4�ӝ|l�f�ɛ����{/���ȱX x++ ��H��~��ȿ����³eȋ8xS缬|T��}�{G�͚�R…
128 �}�Sd ��T��ܰm����b&�v��M�v�D aǒ#�V��婝Ds�_�l5���_�V���Nx=u��Y"�.��� �zM
160 …Mj��R��,Wʳ|���[��G�Qh8Qr�}�jPD�Z�Sui�$��=�O��2�F#�T�D����n����1�&}�Zҫ�r��a���Y���
/cts/tests/tests/media/assets/hls_variant/165340/
D01.ts52 …c��+��l�ތd~8��'���.`�62rS�v�Y�P�g�R�+���{��C%�.�(4��BS��dK甂����΍u�Ƀ�z��y�e�c�����1=j�G�…
53 …_�Ct�xy�A�c��GA�����!����\@!��.*,t��4(sT`�� B�F'.�w>�e�K���Y��¶������`+6&�r�9I…
62 …��!�I%��\@"��**iV���ÙT0�\��!x���/���|�m6�pv��֌L~gb�<�B�j�Z=Y�p���%30�z�\F�\�…
88 …������������������������������������������������������������&���I��Y�›�8����Wr�Y9�;H�EϪ�m{� ��…
93 …��J���z�����2�j7��#��]hw}�9��%���_,�#}j�qJ"!�׸R7J��p(C^DEJ��V����0}�Y����R��#Vh���2z/Bڿ…
95 ��8=yޛ"x͊�t.>�s;ګ��Z�A�a) k�7������Y�<���#��nN�cRy'`b�97���Ӧ�~�"��G��{���hݥ��U2���| �ϴT…
124 …�s�*c{�i��_j�K�2 ��� �x������:������M�n!e�o��av��J������[���`�M�yg��`�Y�ѹS��������^څ Ya��…
125 c���}|qh����D���n�cG����Y���I�K����щ�K���HK:���d����},������1d������p���m(�){�����<֖4���;l…
139 �t �"�H]�AMؓ@�,��Y���/m.�2�e� �G��{<\�t�P��1*x�Ͷ��GA�������!�!��� ���A��?���…
164 …�<cš���mo���3������^��O�8}���dFk�3���P�Ú?��\�05�8�~s����8}���Y�*��wH_?���=�[ʜ>�ܿ�…
[all …]
D09.ts37 …�iT����e�o����8��?�cgTj���-?4�P=��\_�b��� �����%�_�i�)"�zG���-*���6���Y��e�e�V��`i?��&���A��…
43 …����I����O��J>������UA2���#!%W��є� ��-����IZ���rnUm�V��aE��*~o��T�߻��2`Y������"SG�vu��> .��…
60 ��(��(#�׶l@N������Y���ʑeDQC: ����*�I��%�l�Ub9�s�t��KA�
64 …)����������������������������������������� +���>��r�_��m�|�$Smw��^�J�8���� �/��Y���$J���m̛s�As
88 ��Q4��A�G���"��s̍y��l6j�$���?e"X��فu�7����C�ud�Pr�;}���1Y����FW�0�aL��H�0WR5���̹�(O…
127 …�2$ș�`F��ݚݷ����x�Y�G�����e��� �Ņ���|o��>G7�Ǿ0�"�p���o�g�K?��7U���|��濿yB�*8��<!��_��…
128 I1�o�z4�(��v���{.��@$�½�kCB��e��a�rE{�P���-����X��u�ۢ͘5��C*Y&_�2�2�k�*mv4r_�{���J���3…
150 ….)�Z��b L$�5YT�7��A�*۵�+��7�ڹzo��3�P�w���N<Hix��p`��1y7 <��VH�u��Y�6Ejl�'m�k�H�÷�94Y���…
159 zޟ�wE��)OX�C}�G���������Y`wlڙz��Y����@
160 �N]^Y��<E�$3w��������o���y|��%��>=��_5x������qn��
[all …]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Renderer/Renderable/
DLight.java19 import static com.android.cts.verifier.sensors.sixdof.Utils.MathsUtils.Y;
64 Matrix.translateM(getModelMatrix(), 0, position[X], position[Y], position[Z]); in Light()
79 Matrix.translateM(getModelMatrix(), 0, translation[X], translation[Y], translation[Z]); in updateLightPosition()
/cts/tests/tests/security/res/raw/
Ddrm_uaf.dm11 ~�*�{P���C!�+ڊ�����<�%�^�,?�*Ȣ���'�0%��~��)���Y�<�>�.�_�_ Y]���f���8p�]�h�P<�"��\��[� �4��…
20 …������� r���W����ܘ�7P<R�$��q�y �`��0�D�/}ɏR&���P<���P���Ү��Y�Ã�@�r����<w!i8�[…
23 …%;nx�J�Z�y`�㧫O`��r��F��Qp<��-�K?F�>��J3�5����� �2���<Y��(�p?Í����t^Y,�%��o�hf{l�@<Y���р�
25 …�P<�-18�+^�|��i.�x�Cј�T��1흑�<�)Z8��^�y�E��H��L��E2e�@zeP<R�$B� ,T���Yv��pk�������Ң�<� ��…
35 …��#���>�‹篊�M��vo�� �=/�<S �e�����q ����%��q���Cw3� <�>9TL�,3*�l�/�Y��&3:�����P@<�$����…
38 …�$�W}�a5��)P<Y0�D.E^=�[�'�e�-#�g�O�������0<�]�<x_�ڦ�)G�\��y�@��G��(�@<Y->xf��ARv�j�� �…
40 …��%�P��g���q��� <�"x��Å�AI\*�)�Xו�:���_��`<�����)'��̪i�m�;�"_�M�Y��<�������� z J��&e…
46 ���j~<aU~�4O��F7��4f�Y�F @<���5[:<oW�UU��Y��=���G{�T\��<Y%��"�[�dTUS����˳�>����vd�<Fd��!…
52 �x�4Y����0 
/cts/tests/tests/media/assets/hls_variant/765178/
D16.ts9 B���)�-�F���ĝ�g�*���d�B�Iw�,^GA#��+�[�4����I_�MZ@�}v��í�8��_�@�eA���r����"�)�]��t��Y=��…
33 …M��w� �=>�B��)���=?�zq&<�4��^�����K>�#n� ��XL���=U��3z.EP��L\��G�"C�{�X����Xc�<��k!2Y
40 O �Z�D1��i�C�y%&FY5�U��Y~���$/"x��h�zR^pLG�����JVa*�Ӥ�A=u%l�f���<��ݣu��lz3$��n�!����o&�̯�…
78 C�Q�� ���['d�%�`�'>10N��BH�xޣ/3w��{MA�t{�H���R�^�����G�&g~+��1˕�ZujߎJ��\��O��+����Y�4f�QL…
99 s�7�%�]mY�?�I�:�q��س5gf����n`y�f��4b���Kd���J待��N6AL�Y*j����7n0��ZMG��AkK��>�sM?�Kv����
100 ��� qB�c��A�E�\:�?v ��K=�o��~������),,���q�J��Y��i%ǭ�o�U"6��nV������fx��rd Y�2��c�
108 …�;$�ZX�������$ 2�,q ����������g�f���솆�#��&ӂ_�����iwz�pH@������C�*����|ݯ��k��Q� 5�Y����}dV��
129 �K���z�S�?a�2�ۀ�Y���zӟHlW,��������P�d��G�t �]��&����6D�y�������ސ��Ebh�LL ��fjV���E�x9�3
142 …E��UVՖ�����8rE�l-z���!G��Ð�<�Gw�����s�DY��s�g�(3�qu禼X�KCZ���ʔ@� �${Y��%K�����[�ܵ��z�{�…
153 …���������������������������������������������������������������钚(��"FO�i��Y#(,q�A��c��aeC䣾�…
[all …]
D00.ts18 …^e6KF�$)���]�/��[��]\kTdV�" �]F�oA>f������7�^��<P�8eG��{G$h�`�?�U�Y�lb�!��%GmC��;���M…
33 …b���x_����-�G��F��F�X��7> �d4���3pi �?�R�G�*u@W%1j��T��"�ڟY�=�n�)%H\Y��x���x_m��*H�P��1z�…
48Y.;K{^QKٗ൯Q.���MoG����h��d��3�&��ꒇyu?�t�g�ӾaK���_3C�ŀ��/��T��(��k��m0�bٔC;�fWҗ�8Y> !��:…
65 …2uʾBrB@�u鱢u�>�:U �r�k�6������c&۩Ԕ7FԔ���oj�D�����᪳�[7G�M$A����$sZ�X���Y�0zhN?!o��o�Z�=n�_�…
107 …3{���bnMsjxK�D��Ɲ���^�O�w~�[�g�G��n�[�Կ�z��/(���µ��ݻra$�p�겴r��`Y㐰+�x��i[�a�4�"�E��
121 �q��$#��fӺH/�GF`�/�l��~I&�o�� �� ��?u����t�s�=!#�1c��Wb��vԈ禲ڲh�SB��s[bPP����5B�)���Y�ӋD��…
122 Y:��x��2V��
130Y��(��k^�3f`��~AGA���N��!�0���P@(��*�-4f�$Ħ��&���U-QH�R�T�m���t�Һ�����Ϝ�ko �8P��O[�]�o�…
132 �6-C�z���xR�~�2�F���t� �Ld� K5�p6�PE�6w4@#hn���_G�,ta�(�yŹބPQ ���`�k���%���Y�0C�Z3�L"�&…
137 …}|DU���5��G5��7&��K���u���#�\,'qA(��S�}�>H��0�~�,G�W.+eF��"Oχ��}���Y�+U�>��Z���� џ%��…
D15.ts13 j|�,��;Tũ�Т����r5�:וt������^�e�=7�]�_vt��B�/ưf!����'�c�[<Y��D���B�eȩ,�
14 ��lY~%n_�rp?��qW@K��M�- `p�;_d�$����R�1���F��D���Q�??��/��G�A#�w�/�$�K��0�%���X���f:"���~…
53 …��ɬ�ۋt����j�?:�����E��c�x����O`6�=�X__�����G����d�4�D��1�YiQ�fI�P��,h�����*…
76 �g��8�T����+��w����y���-�xw圢ZG��)��g�k���PՎ#E��dt��&�Y��w�ȋZ �p�/?çy�3@�ZB�A*6�MI>�y�…
167 ^<Y��9a��&�v2�,=��%����R.���xΫL�v�VoH��G�4o\�Unj�J`nKp�y5o�a��a��Ȅ��t;�g.�!��6���2_ZL�LG…
188 ��aT+G����밌=GZce��/�<�Q~8h���� qݬ&�HB�T��oc�/�c�(o���.H|6ѝ�e����}�[�Y'_�Hw�ik<�lx�wk…
194 �e��� �'��$Z��m�"��dH؟<H�ZM�>�S�!p����� ��Y�H�,m�4`����H����>�}�qG�+�mp�c��j��{����2��…
224 �H�����$m� yv��P�V$J[C���Ks�}K�߀T�\�n�����Y���O����u��-�?�������dt�y���_b"Lxr"z-����ܳ�…
227 …rM�SZ�ԣ���Ω��a�al��᧨yh5Y��0�*s���g�������z�W�B�8�����f����5-�*X�Ba��Y���=��0m��s�7"�/�L�…
255 …�*�#���P��ɂa�xtCT%9�9�L�@�g��1}��^��bc���O[�bN;.%_��28Ҫ샄o�=TW�m�`�b.#@4Y�Jk4��*#�V����G���9…
[all …]
/cts/tests/tests/media/assets/hls_variant/1676816/
D03.ts19 …C�S�y8N���R=���p������˘�O0O�~QO��.���ol�Z� E�%��7G�U'�7w����'���Pt�Y��2�&$(��N���c�ƒ`�I…
22 …:3^}g�� �T��]G�1%HN��R�kd���A� �Jbh�zɒ�lc������I��~�.�=�g��ژ�b,��Y��`�.�h�j�o$��gD��…
38 …]j^��v�� � �R�F;2�ɸ�63(�5*�@������yQ~����f��u�53[����9�?��o�/~ , ��A�Y�r.��Q�3+o�h}9��M�J…
39 ���5G��e�$%J��c��!�n<Oj�H2^�R1�K�C��aF�����2��S�=�I�MT`�M:�lY�|���e͹"�;��KA�)q�4��[35…
45 …w�H������p�2 �s� ����m,�!݊�p�6�� 8|}�=*����/���V�wl�mX�^�j�Y�Aق��b�}�)Z`e)��~��…
49 …��mZ$�C .��E���mɡV��5�W�8 ��~�e�*���\b�!0�w�_s���2��Fæ��Y�uZ�����(�����C��uc\ރ��Y�G��…
71 �T�$�?� �j��~z�~����32 ��B�l��ƤG����OA��݅����Y����w��?,W�Yq4�V�A)z�nJi`yA��G.p1<���RF�ħ…
72 …����H��H��lV����Vަ-<Nz8��s�>�!���a3q��¨��J t������JUS�h����ŎVI;�)�֫=�Y��3XG��� niбaUSu�…
76 …���I8rӨ�P�0ܟ[�j83�@€,���f�i���K�Q��=��(^'��uƕGb� ӎ���HTg��%o��2�Fl��\;Y;*���G��B�� �����…
91 …R�_�I��Oq����V�=u�_������> ���;h��[� �c�5�#��!)�F�U� �Rh�gJr��|Y{(��j {�FD�O�tFgG�…
[all …]

12345