Home
last modified time | relevance | path

Searched refs:X (Results 1 – 25 of 51) sorted by relevance

123

/cts/hostsidetests/sustainedperf/dhrystone/
DDrystone-2.1.sh18 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/
DRSColorMatrixTest.java31 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 …]
DRSBlurTest.java31 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 …]
DRSConvolveTest.java31 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 …]
DRSLUTTest.java31 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
DRSBlendTest.java31 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
DRS3DLUTTest.java31 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/
DSingleSourceForEachTest.java27 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 …]
DTestCtxDim.java27 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/
DComplexMovementPath.java22 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/
DAntennaDirectionTest.java27 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/
Drs_jni.cpp83 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/
Drequirements.pb.go73 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 …]
Dmpc.pb.go93 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/
Ddrm_uaf.dm9 ��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�ï�͓�&Z΍0<���|�������`���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��…
42X���ͻ}�'�X�0h��`��<�,t)���+�P�A'�� �0�խO��FsB@<����x�K���4���֩��l&�t�aF��<{,�1L]8�+�`S ��…
43 \��<�/��R޴7: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 �ӀWy�y�:�[5w��D~�XĆb�<6�{:����*��TmT�5q��h������pp<�-#�X���z�>+��iw��F��5�C�<r���>�/j�M…
Dcve_2019_2245.ts37 …_����]��(�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�G�1�A�;�X%�WD�X���j��$�Ȣ��0d����}
43 …�����Ʀ]z�K�G�1�>;�����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�G�1�z$�DI
131 …��>:V���OB͗{[�.�,2��W�G�1�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�}�G�1ٵ��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 …]
Dcve_2018_13925.ts38 …_����]��(�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�G�1�A�;�X%�WD�X���j��$�Ȣ��0d����}
44 …�����Ʀ]z�K�G�1�>;�����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�G�1�z$�DI
132 …��>:V���OB͗{[�.�,2��W�G�1�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�}�G�1ٵ��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 …]
Dcve_2019_2244.ts37 …_����]��(�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�G�1�A�;�X%�WD�X���j��$�Ȣ��0d����}
43 …�����Ʀ]z�K�G�1�>;�����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�G�1�z$�DI
131 …��>:V���OB͗{[�.�,2��W�G�1�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�}�G�1ٵ��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/
DMathsUtils.java29 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/
DModelMatrixCalculator.java19 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()
DConeModelMatrixCalculator.java21 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/
DLight.java18 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()
DRingRenderable.java24 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/
DBaseRenderer.java26 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/
DDeviceConfigShellHelper.java166 private static <X, Y> Map<X, Y> subMap(Map<X, Y> keyValues, Set<X> keySet) { in subMap() argument

123