/cts/hostsidetests/sustainedperf/dhrystone/ |
D | Drystone-2.1.sh | 18 X 19 X Reinhold P. Weicker 20 X Siemens AG, E STE 35 21 X Postfach 3240 22 X D-8520 Erlangen 23 X Germany (West) 24 X 25 X 26 X 27 X [all …]
|
/cts/tests/tests/rscpp/src/android/cts/rscpp/ |
D | RSColorMatrixTest.java | 31 private final int X = 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() 55 build.setX(X); 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 …]
|
D | RSBlurTest.java | 31 private final int X = 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() 44 build.setX(X); 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 …]
|
D | RSConvolveTest.java | 31 private final int X = 1024; field in RSConvolveTest 34 …native boolean convolveTest(String path, int X, int Y, byte[] input, byte[] output, float[] coeffs… in convolveTest() argument 36 int[] baseAlloc = new int[X * Y]; in testConvolve3x3() 49 byte[] byteAlloc = new byte[X * Y]; in testConvolve3x3() 50 for (int i = 0; i < X * Y; i++) { in testConvolve3x3() 55 build.setX(X); in testConvolve3x3() 65 byte[] nativeByteAlloc = new byte[X * Y]; in testConvolve3x3() 66 …convolveTest(this.getContext().getCacheDir().toString(), X, Y, byteAlloc, nativeByteAlloc, coeffs,… in testConvolve3x3() local 75 int[] baseAlloc = new int[X * Y]; in testConvolve5x5() 106 byte[] byteAlloc = new byte[X * Y]; in testConvolve5x5() [all …]
|
D | RSLUTTest.java | 31 private final int X = 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() 44 build.setX(X); 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
|
D | RSBlendTest.java | 31 private static final int X = 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() 52 build.setX(X); in testRSBlend() 111 … blendTest(this.getContext().getCacheDir().toString(), X, Y, byteAlloc, byteAlloc2, iter); in testRSBlend() local
|
D | RS3DLUTTest.java | 31 private final int X = 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() 52 build.setX(X); 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/tests/tests/renderscript/src/android/renderscript/cts/ |
D | SingleSourceForEachTest.java | 27 private static final int X = 1024; 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() 103 sc.setX(0, X); in testKernelLaunchWithOptions() 106 s.invoke_testLaunchOptions(testInputAlloc, testOutputAlloc, X, Y); in testKernelLaunchWithOptions() [all …]
|
D | TestCtxDim.java | 27 int X = 2; in test() local 28 script.set_gDimX(X); in test() 29 typeBuilder.setX(X); in test()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/Path/ |
D | ComplexMovementPath.java | 22 import static com.android.cts.verifier.sensors.sixdof.Utils.MathsUtils.X; 177 ringCenter[X] += mLocationMapping[ringLocationDifference.ordinal()][0]; in createRing() 192 rotation[X] = location2[X] - location1[X]; in calculateRingRotation() 231 float magnitude = (float) Math.sqrt(Math.pow(rotation[X], 2) + in calculateRectangleHitbox() 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() 241 midFront[X] = centre[X] + (lengthScaleFactor * rotation[X]); in calculateRectangleHitbox() 244 midRear[X] = centre[X] + (lengthScaleFactor * rotationInverse[X]); in calculateRectangleHitbox() 249 frontLeft[X] = midFront[X] + (widthScaleFactor * rotationNinetyInverse[X]); in calculateRectangleHitbox() [all …]
|
/cts/tests/tests/media/assets/ |
D | prog_index.m3u8 | 2 #EXT-X-TARGETDURATION:10 3 #EXT-X-VERSION:3 4 #EXT-X-MEDIA-SEQUENCE:0 5 #EXT-X-PLAYLIST-TYPE:VOD 10 #EXT-X-ENDLIST
|
D | hls.m3u8 | 2 #EXT-X-TARGETDURATION:10 3 #EXT-X-MEDIA-SEQUENCE:0 8 #EXT-X-ENDLIST
|
D | fileSequence1.ts | 21 N���X��C�-��<����ᚊ�f���?,�q��X�q��;0��������seXGF�3�auuI���5�u'�k��8A�W� �Ֆ|��wӐ�… 49 1/'g����\���ל�mF号�������;�Jq�h���\k�#���Zm��X���{>���"bTh���s��� 71 �\kpx���=��3` X��4��' �R�*+��1�7�9]t�$.,Bbc�#f��)q�����=I���r�"Pi���ܥ#p��W\:c�=>ߑ*d��… 73 |����O��X�"HEa�kio��̓���]�����r�s��%�����E�ŬI 94 �P҉���kVNd�ʇ�;z>�|��X�?�c����eu�l_��4_(�H���Hz��2a%N�F2��J�M�J^��(�I��,)��� Ӊ �C]*D7�A�… 107 …�:��!y�����Κ��Sc/�ʺ�T��ƀ'PHL���\@!_�07���a@P0D�Q��wU"ɲ�K�X�B�����Q�yڵ(hA,��ũY… 116 …£�3Ħ��nfjΰ���'�8������h��z��MД ���d8�5X��r�C�q���~nzD7]���\�<�uYʘ.��D���nb�XY"�mPƜ%@�… 120 A���[���8�X�����P�o8*�u�Z�G�}>U6/OZ����\@*�47�Q*���,�a��`�R�3Jk,��V�\��+�qF�… 121 …�\sd�$�3��+�4h@Q)BA�+�����17���q��8�g��4���=��ؐ�T]��G!k�]vF5_\�hX��lU}���D(����óC<!�… 128 …�����D$�f�vlE�Lj�T·R`8��\@(�,7��[E�q�X$B��k���\�Nu*�:�C��h��e89G� ��cs[��fm��8�(X [all …]
|
D | segment000000.ts | 72 ��S��$�>�[�=�� �?`�[������ae}֚��\�=׀�a��}a\K��xNW+7��X��ɖ#��G2�2"z5�x��K�c��[���p� 97 …o1�X�7�np��Ql�5�xU?��|�7�uhj�>����G�f���lB�q������&�������?���X�A��k�f�d���k�.�x?0 M… 134 �jN�oS�j�d<) ��7��脬T7�t�����X�q��n1,�¸�Vp�F�쿛��=�-�o4���Y��r� ��s;����Ea^���Ō����d���8O… 143 ���\&C��7�U� �1�Y@�z}K� �xN���)�`S�X��ώ��ŁQ:K��E��s�_�0g���O]Y�i�Z+��/��l��|�G?�����… 146 …��ʐ5t����W/��RR@l�J���߄�5_��������:�����+�'��o��u��Uqo{�Jf��U��kX|0�b�}�����(z��~մ… 188 …�P�) S*�����X!������SB[Y���ͤ��?�Ɏʩ��Aj�bG�!;wp�2�BQ5Ǣ�M-��� p���\�u������<��gg�w^_{… 192 �b�|�o��[5���X�2��-���,�o�oC��C��B!J� D�v��~o 197 t���p��w�`R>y��!��4�*��6��s�}X�ͳ2�E?AfGtaRC\�Z�\�L����|�+�.�1{�����wsG@ B… 208 �7�"6��o�<���|'!!���ɫ³8��q~[-��h�)���S���o��$�t�N��X���\���11_�lcL:���a]3�p�j[���u�L��^���…
|
D | segment000001.ts | 14 …vV���K�d���l��E�m~�x�����w�n����*�;���&*�1[��AbM��X��)@1R!�<����T��0��T�f� ���X�\� 37 4���N��0��?�%��X���G�;?���4��_}�����i�y�"ؕΙP{X[�W��f���<��U���}�����lY9U�[K���LDw_��… 67 ����fm������TC$m5v�x��u���s��$�bȈݾ��N�῁�h6����Kz[Q���X��Ii�������]x���<8�����VH�"�Ħ… 77 …���$ �Bo�*b���v+{&8W@A���{�H��3���)���H�oT́G��_��V��|����7g<�����X���a�B���3�^��4���e… 105 …͉��}3�(�kQ^�$\�8a���Κ�h�-����1F���MGo.�bU��*�@�!�f�+BL���`]�k.U�X�����n}��A ���-lq… 107 …4���oW:T��ү~|����0�.��?a�R�|��g����_��`��Dy�_�E~�iz<���\E�X�Q���*B�،7��G��… 129 ��k�&��bӺ /̽f*��I!#"C�3�tM��?a-d�?�����#��wz;jpk�D����1҇\�C}�?10��{����H�Oq!�8����R��[�*X 136 , /�%�� 堏��i�*b3��F`�p4X��Q�1K�z�8�pĤ����ê�f�X�rʨg�E7�G�ć���A96�����UЇPM|���.�Q�E�le��… 139 ӽ} O���$E��G���DN$��2~�"lϾi�v�ҡU���n�`��X��9��ϙ�-t^�c�J�p�ˏ��=�R�k���]������y� ����ɬ… 158 !�A�h`Y�?�kT��.�����:O��@&q��k]��l����ap����O�!U��x �h+��������ڔ�r����:�m>��4i:�6tǬ�M>�X�…
|
/cts/tests/tests/rscpp/librscpptest/ |
D | rs_jni.cpp | 83 jint X, 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/tests/tests/security/res/raw/ |
D | drm_uaf.dm | 9 ��W��cg[�<�(�@b�i�X�����+�|�d���t�=_�<�{����/���?���������f�p�<}B���i�[��H�}uj8���A… 23 …���y?-��f�C�r�ٗo)[� R�R�� <���Nn�i�J�w�-!TB^ 4늶�F �P<}���r0ߥ�:c/�͆�X/�'V��rAx <�)�����… 33 (�ʗ��~i�C������ĝQ#:��@<�3i��?h~���Z':��v�X����s�`<��� 35 …o����F��a��<�g�*7�h�\����F�ï�͓�&Z0<���|�������`�X+�{�Rxp��<���_>�h�_4�c�~VZ%@X�… 40 …�xZ��g�x���>��Gu^o�$�5�z�<�-,���hmy��<X��5��ʄI��>���<��g�� _�w�W��%�P��g���q��� <�"x��… 42 …X���ͻ}�'�X�0h��`��<�,t)���+�P�A'���0�խO��FsB@<����x�K���4���֩��l&�t�aF��<{,�1L]8�+�`S ��… 43 \��<�/��R7:D���n�:j�*�l��P<yc��=�*X �?E�� ʘ��������@<���: 49 �����5���]c��{u�{$Ց!�<X���z�9���-Z��$�l�;�� ��<��sA�*��C�+��jc�8{�E�&\�R<X�c,_*�[.�`� 55 �ӀWyy�:�[5w��D~�XĆb<6�{:����*��TmT�5q��h������pp<�-#�X���z�>+��iw��F��5�C�<r���>�/j�M…
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/ |
D | MathsUtils.java | 29 public static final int X = PoseData.INDEX_TRANSLATION_X; 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() 231 float xDifference = point2[X] - point1[X]; in distanceCalculationOnXYPlane() 245 float xDifference = point2[X] - point1[X]; in distanceCalculationInXYZSpace()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Renderer/RenderUtils/ |
D | ModelMatrixCalculator.java | 19 import static com.android.cts.verifier.sensors.sixdof.Utils.MathsUtils.X; 91 … Matrix.translateM(extrinsicsBasedMatrix, 0, requiredTranslations[X], requiredTranslations[Y], in calculateModelMatrix() 112 newModelMatrix[MATRIX_4X4_TRANSLATION_X] += translationInOpenGlCoordinates[X]; in calculateModelMatrix() 132 mDevice2IMUMatrix[MATRIX_4X4_TRANSLATION_X] = translation[X]; in setDevice2IMUMatrix() 142 mColorCamera2IMUMatrix[MATRIX_4X4_TRANSLATION_X] = translation[X]; in setColorCamera2IMUMatrix()
|
D | ConeModelMatrixCalculator.java | 21 import static com.android.cts.verifier.sensors.sixdof.Utils.MathsUtils.X; 63 relativeVector[X], relativeVector[Y], relativeVector[Z], in updateModelMatrix() 65 mUpVector[X], mUpVector[Y], mUpVector[Z]); in updateModelMatrix()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Renderer/Renderable/ |
D | Light.java | 18 import static com.android.cts.verifier.sensors.sixdof.Utils.MathsUtils.X; 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()
|
D | RingRenderable.java | 24 import static com.android.cts.verifier.sensors.sixdof.Utils.MathsUtils.X; 65 rotation[X], rotation[Y], rotation[Z], in RingRenderable() 66 upVector[X], upVector[Y], upVector[Z]); in RingRenderable() 73 Matrix.translateM(translationTransformation, 0, position[X], position[Y], position[Z]); in RingRenderable() 141 lightPosInEyeSpace[X], lightPosInEyeSpace[Y], lightPosInEyeSpace[Z]); in draw()
|
D | Renderable.java | 21 import static com.android.cts.verifier.sensors.sixdof.Utils.MathsUtils.X; 88 translations[X], translations[Y], translations[Z]); in setRotationAngle()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/audiolib/ |
D | WaveScopeView.java | 94 float X = 0; in setupPointBuffer() local 97 mPointsBuffer[pntIndex] = X; in setupPointBuffer() 100 X += xIncr; in setupPointBuffer() 102 mPointsBuffer[pntIndex] = X; in setupPointBuffer()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Renderer/ |
D | BaseRenderer.java | 26 import static com.android.cts.verifier.sensors.sixdof.Utils.MathsUtils.X; 113 upVector[X], upVector[Y], upVector[Z]); in resetViewMatrix() 117 upVector[X], upVector[Y], upVector[Z]); in resetViewMatrix() 265 upVector[X] = 0.0f; in getUpVector() 270 upVector[X] = -1.0f; in getUpVector() 275 upVector[X] = 0.0f; in getUpVector() 280 upVector[X] = 1.0f; in getUpVector()
|