/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/telephony/current/src/android/telephony/satellite/cts/ |
D | AntennaDirectionTest.java | 27 private static final float X = 10.5f; field in AntennaDirectionTest 33 AntennaDirection antennaDirection = new AntennaDirection(X, Y, Z); in testConstructorsAndGetters() 35 assertThat(antennaDirection.getX()).isEqualTo(X); in testConstructorsAndGetters() 42 AntennaDirection antennaDirection = new AntennaDirection(X, Y, Z); in testEquals() 43 AntennaDirection equalsAntennaDirection = new AntennaDirection(X, Y, Z); in testEquals() 49 AntennaDirection antennaDirection = new AntennaDirection(X, Y, Z); in testNotEquals() 56 AntennaDirection antennaDirection = new AntennaDirection(X, Y, Z); in testParcel() 68 AntennaDirection antennaDirection = new AntennaDirection(X, Y, Z); in testGetX() 69 assertThat(antennaDirection.getX()).isEqualTo(X); in testGetX() 74 AntennaDirection antennaDirection = new AntennaDirection(X, Y, Z); in testGetY() [all …]
|
/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/mediapc/requirements/ |
D | requirements.pb.go | 73 return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) 90 num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b) 144 return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) 161 num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b) 212 return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) 229 num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b) 257 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) 263 return protoimpl.X.MessageStringOf(x) 271 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) 326 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) [all …]
|
D | mpc.pb.go | 93 return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) 110 num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b) 160 …file_cts_tests_mediapc_requirements_mpc_proto_rawDescData = protoimpl.X.CompressGZIP(file_cts_test…
|
/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…
|
D | cve_2019_2245.ts | 37 …_����]��(�j:��zl@t�tLuP�[M�A˃zK��'Y�Cy�>�Q��J��↟tͲ�w�������2�<�(7�����X*蒆��B����BH���1R… 41 zrIwH�P%ҫ�R�J�0'M�G1�A�;�X%�WD�X���j��$�Ȣ��0d����} 43 …�����Ʀ]z�K�G1�>;�����6�Қ���*�κO�Z),�$����:��]p������D�# � :tv=f�u�X���jщ��8�wBc� ���N… 121 …?{�&�́lm:���e W���n��"�O�ס5�oX�T&%;=SCF���K�e�||����T*Tg��*2�LdZ ��X���槦�cX|�H�G1�z$�DI 131 …��>:V���OB͗{[�.�,2��W�G1�i��J�,�æG��J��Hf��`�.8T˕uX��%��#{����X���,���H�J�0������… 135 4O�.�������T���jڒ��X�J`�8�A�K�2�\p�`�D�%_���.MQd�&m�e5�e�a�}�G1ٵ��T$ɗ!d�%�Y�>�… 146 …~�{i��j%6���`}?�*])1������j,�-�×�[h!Ar�5�6�c�a3]���'�˔.�ƱSܓ���jX������I����У�4�ͦ����… 147 …Y��N�<0�����&p�;�D�%���P�B�MM藢���f�K�D�ڠ���3\�EBF�Cەovl����\�zҀ����D�X�v�h ]ɢR��W��;p�/.^�… 148 ��t��`�w).�|X�S�[�(��d��3�o��5 157 …�^����#�P+�A$��L:� ���&Wu��D5���CO�X�S�UzBh�ɄD餟Z����]�m���%V���&�����Ju��\�{��}D��ͱ�$�]WD���m/ˡ14… [all …]
|
D | cve_2018_13925.ts | 38 …_����]��(�j:��zl@t�tLuP�[M�A˃zK��'Y�Cy�>�Q��J��↟tͲ�w�������2�<�(7�����X*蒆��B����BH���1R… 42 zrIwH�P%ҫ�R�J�0'M�G1�A�;�X%�WD�X���j��$�Ȣ��0d����} 44 …�����Ʀ]z�K�G1�>;�����6�Қ���*�κO�Z),�$����:��]p������D�# � :tv=f�u�X���jщ��8�wBc� ���N… 122 …?{�&�́lm:���e W���n��"�O�ס5�oX�T&%;=SCF���K�e�||����T*Tg��*2�LdZ ��X���槦�cX|�H�G1�z$�DI 132 …��>:V���OB͗{[�.�,2��W�G1�i��J�,�æG��J��Hf��`�.8T˕uX��%��#{����X���,���H�J�0������… 136 4O�.�������T���jڒ��X�J`�8�A�K�2�\p�`�D�%_���.MQd�&m�e5�e�a�}�G1ٵ��T$ɗ!d�%�Y�>�… 147 …~�{i��j%6���`}?�*])1������j,�-�×�[h!Ar�5�6�c�a3]���'�˔.�ƱSܓ���jX������I����У�4�ͦ����… 148 …Y��N�<0�����&p�;�D�%���P�B�MM藢���f�K�D�ڠ���3\�EBF�Cەovl����\�zҀ����D�X�v�h ]ɢR��W��;p�/.^�… 149 ��t��`�w).�|X�S�[�(��d��3�o��5 158 …�^����#�P+�A$��L:� ���&Wu��D5���CO�X�S�UzBh�ɄD餟Z����]�m���%V���&�����Ju��\�{��}D��ͱ�$�]WD���m/ˡ14… [all …]
|
D | cve_2019_2244.ts | 37 …_����]��(�j:��zl@t�tLuP�[M�A˃zK��'Y�Cy�>�Q��J��↟tͲ�w�������2�<�(7�����X*蒆��B����BH���1R… 41 zrIwH�P%ҫ�R�J�0'M�G1�A�;�X%�WD�X���j��$�Ȣ��0d����} 43 …�����Ʀ]z�K�G1�>;�����6�Қ���*�κO�Z),�$����:��]p������D�# � :tv=f�u�X���jщ��8�wBc� ���N… 121 …?{�&�́lm:���e W���n��"�O�ס5�oX�T&%;=SCF���K�e�||����T*Tg��*2�LdZ ��X���槦�cX|�H�G1�z$�DI 131 …��>:V���OB͗{[�.�,2��W�G1�i��J�,�æG��J��Hf��`�.8T˕uX��%��#{����X���,���H�J�0������… 135 4O�.�������T���jڒ��X�J`�8�A�K�2�\p�`�D�%_���.MQd�&m�e5�e�a�}�G1ٵ��T$ɗ!d�%�Y�>�… 146 …~�{i��j%6���`}?�*])1������j,�-�×�[h!Ar�5�6�c�a3]���'�˔.�ƱSܓ���jX������I����У�4�ͦ����… 147 …Y��N�<0�����&p�;�D�%���P�B�MM藢���f�K�D�ڠ���3\�EBF�Cەovl����\�zҀ����D�X�v�h ]ɢR��W��;p�/.^�… 148 ��t��`�w).�|X�S�[�(��d��3�o��5 157 …�^����#�P+�A$��L:� ���&Wu��D5���CO�X�S�UzBh�ɄD餟Z����]�m���%V���&�����Ju��\�{��}D��ͱ�$�]WD���m/ˡ14… [all …]
|
/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()
|
/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()
|
/cts/tests/tests/time/shell_utils/common/android/app/time/cts/shell/ |
D | DeviceConfigShellHelper.java | 166 private static <X, Y> Map<X, Y> subMap(Map<X, Y> keyValues, Set<X> keySet) { in subMap() argument
|