Home
last modified time | relevance | path

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

/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 …]
DRSConvolveTest.java32 private final int Y = 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()
56 build.setY(Y); 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.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
DRSYuvTest.java80 native boolean yuvTest(String path, int X, int Y, byte[] input, byte[] output, int yuvFormat); in yuvTest() argument
/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 …]
Drs_jni_foreach.cpp294 int Y = 7; in Java_android_cts_rscpp_RSForEachTest_testMultipleForEach() local
296 s->set_dimY(Y); in Java_android_cts_rscpp_RSForEachTest_testMultipleForEach()
297 sp<const Type> t = Type::create(mRS, Element::I32(mRS), X, Y, 0); in Java_android_cts_rscpp_RSForEachTest_testMultipleForEach()
328 int Y = 7; in Java_android_cts_rscpp_RSForEachTest_testNoRoot() local
330 s->set_dimY(Y); in Java_android_cts_rscpp_RSForEachTest_testNoRoot()
331 sp<const Type> t = Type::create(mRS, Element::I32(mRS), X, Y, 0); in Java_android_cts_rscpp_RSForEachTest_testNoRoot()
/cts/tests/tests/renderscript/src/android/renderscript/cts/
DTestCtxDim.java30 int Y = 5; in test() local
31 script.set_gDimY(Y); in test()
32 typeBuilder.setY(Y); in test()
Dyuv.rs28 short Y = ((short)y) - 16;
33 p.x = (Y * 298 + V * 409 + 128) >> 8;
34 p.y = (Y * 298 - U * 100 - V * 208 + 128) >> 8;
35 p.z = (Y * 298 + U * 516 + 128) >> 8;
DForEachTest.java466 int Y = 7; in testMultipleForEach() local
468 s.set_dimY(Y); in testMultipleForEach()
469 typeBuilder.setX(X).setY(Y); in testMultipleForEach()
487 int Y = 7; in testNoRoot() local
489 s.set_dimY(Y); in testNoRoot()
490 typeBuilder.setX(X).setY(Y); in testNoRoot()
DKernelTest.java466 int Y = 7; in testMultipleForEach() local
468 s.set_dimY(Y); in testMultipleForEach()
469 typeBuilder.setX(X).setY(Y); in testMultipleForEach()
487 int Y = 7; in testNoRoot() local
489 s.set_dimY(Y); in testNoRoot()
490 typeBuilder.setX(X).setY(Y); in testNoRoot()
DIntrinsicBLAS.java205 …validateGEMV(Element e, int TransA, Allocation A, Allocation X, int incX, Allocation Y, int incY) { in validateGEMV() argument
213 !Y.getType().getElement().isCompatible(e)) { in validateGEMV()
216 if (X.getType().getY() > 1 || Y.getType().getY() > 1) { in validateGEMV()
232 Y.getType().getX() != expectedYDim) { in validateGEMV()
1233 …n validateSYMV(Element e, int Uplo, Allocation A, Allocation X, int incX, Allocation Y, int incY) { in validateSYMV() argument
1243 !Y.getType().getElement().isCompatible(e) ) { in validateSYMV()
1246 if (X.getType().getY() > 1 || Y.getType().getY() > 1) { in validateSYMV()
1258 if (Y.getType().getX() != expectedYDim) { in validateSYMV()
1529 … validateSPMV(Element e, int Uplo, Allocation Ap, Allocation X, int incX, Allocation Y, int incY) { in validateSPMV() argument
1535 !Y.getType().getElement().isCompatible(e)) { in validateSPMV()
[all …]
/cts/tests/tests/media/assets/
DfileSequence0.ts4 …�P�) S*�����X!�������SB[Y���ͤ��?�Ɏʩ��Aj�b�!G;wp�2�BQ5Ǣ�M-��� p���\�u������<��gg�w^_{…
17 a&���a����� Kh�J2�֭�ǠQ*��0A�f Y�]Y�� ��h�Uk/r�"��#�d�}�x����q�n�T3S����J�o���\@!����7��…
40 …�e:��ĵIY� �']꨻`>���\@����7�t�$�‚G��:DF)Ja)fڛi&iH5��<���;���7�Jk����OHd�^6Y�'���0��
46 �5��Y��j���G~gV�u�������\@#����7�t�
73 …����x�"����Ŋ\�J9�b��e TW���1��s,�g^�oG٠�2yJ�J��ZZ*��c������4�)�� Y:_<�2c�����HiX���m…
102 �J_����XQ� �8��\@��7���,� ӈ@"�(m �Q5t��XMG�d��JE�S��,���[�*19ў��~GV�0�Y�[�'r>A\:�A>�jXo…
179 B!0l,) ā����ڊ`U�E]�.��y�d����P�Y ���M�k'#
183 …X�q��`ƒ�� �W[8�3xa�`��X�kMD2�퉐�>���μ}R��o��棽�F ����'z̷0�� ,�����,�Y ��a#�-Y�*�܆������\@!���…
205 …�k1Qx3H/E���c�Y��&�`Y�� AU�XY�)>�r�0����i�oק�������ʩ3怄"^6y�d�Fw�c,D���n�Y�-#^�ʀ�9@��� G��T…
217 …�wU���!0��J ��W�B�>A���*.�)�����ڴ��rtPb�"�=��&+g���o_q�G����1yhY���\� ��գE����FZ�U…
[all …]
Dsegment000000.ts54 …t'���A��f��jE����Ś�.�A���T����ovc� ��2h���$R}��G�u Лw�� ��a��-��1Yß�I5w�@������8?��'ڡ…
97 …G�U:�6t����D����_���7{!%���XO�>̔�a<f3�惃���z�Σ�ܽP��� x���?���/y: m�M�YFv���N��{+��>��M�…
104 …��nT �\&|"þ������G��ٻ�+���@�m��޸\���F���"����'8a���’�rM��?���x2'�"3U!Y���@��ӄ���AMm�^��6…
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�?�����…
188 …�P�) S*�����X!�������SB[Y���ͤ��?�Ɏʩ��Aj�bG�!;wp�2�BQ5Ǣ�M-��� p���\�u������<��gg�w^_{…
202 a&���a����� Kh�J2�֭�ǠQ*��0A�f Y�]Y�� ��h�Uk/r�"��#�d�}�x����q�n�T3S����J�o�GA����ꀀ!…
227 ���}�y���˄����d}������Y� q��uW]�����aY@N��� ��o�@ρ����������?���:�����7iEG���o+Ϳ ��0 �…
237 … �i�[�k�����1�]�ͱ�6���-�������ּ��4kP�l6D*�?9�#l�B��f!B�gG�J4W�-y�Y�� ��2��[�7k�T�EK��w…
299 ��z����9�]ڙ�9��h�5�����)+b��)��|G�Åp<Y���MKH�d��1��a �oOo� ��a��F{
[all …]
Dsegment000001.ts9 kXf?̋���qqpXV�p�J�U����d���[��Z����Q;�v���3�v���U�z99�\��2I�Y��a;��}�=Z��]�0��0��IWA�…
13 ��Y.Np�Y���_K��_�i?�<_�t}1?�WeË���ٍ��e�Yluz
28 …F�D���S��=H����م?y��SR����L�0c����iy��h���a*�DƝ�L�l&�JMV�k&N��N�?Y�e��}�}�s��#��&Խ���g…
42 ����ӀC�A��4���.k���$�U��Y�(ƳI�p9Ǧ��b@�%�m_�����n��c�Y�_�S���F&l�f��_u�ӄ�?�O�@��D��5
57 …�������������������������������������������������������G�e��f��bޓ��L�Z�Y���(TW]�o�h����_���w�…
126 :3e��_>{BA���Ng5N���ָ�Zѳy�Y�4Č� �������(ЭP������
142Y��W�FG�U29瀇J��0�s5L AE�dމ�E��_�e��XR;>R8��
158 !�A�h`Y�?�kT��.�����:O��@&q��k]�΁�l����ap����O�!U��x �h+��������ڔ�r����:�m>��4i:�6tǬ�M>�X�…
162 z_��j��6m4ڬV����e"e�Z�UUW•U�'Y�+��v6_���Wƽ*��"_������ȞzEy��G�1Q��������������������������…
177 �6$=5�O^�mV�U�K�|��}����XA�AG�l�45?�@~j@!�\IG����>�������Y� �cUuZ�ʪ�j�UU^ ]UV���U…
[all …]
DfileSequence1.ts16 …s���e���9^Ǎ�mm��6��k�m�N���z$+v��� ���8��\@�,7���p��b@�@:0�*�n���,��Y�����c��{U�*�pG�…
87 (��@v ?)F�x����Ǟ� �Y�!�+��ϟ]�ǵђ5�11Ƣ�������4f�L2FZ�2��~~d�"@L(��6�����؅�*
154 …��G��\@ �07���K��qh�:`��ĥ�7W"�����MV���5�Y2���d�-k�q�.(8CU���Y[g�΁Ho�RƙPa��Yyj���f��x�$� …
161Y^1�lJ$T��(%����2�Q���Z`0D'�O�+�;�����r��(�r�##B�����I�uj�u�l���Sc Ɯқ�J
177 E�Q0��|�*� C�(���.T3��'�75.3U4`Z ��̅�"���D��D�p)�~ ��c|jJ��j�N�n}�4>M�D N.X:Y� ٘����
188 ���6��j���ߎ��zyЀ�`c ���o��*������_J��m�3����P�Ʈ��/C{�X��7੸�Bq��˕�8���Y\�1D�8!xܮb"��2�۩�…
204 �-In�fzT�p�*R �0�����QBZ��(�T�c�F(�aeb���Uw��Ma%Y����U�@⅔IL���)IY�
205 o��&ѳ��H�!!�h�v=V��*Č�C��=������e�z�Y�UW��1�������4�+9�G��Ue���m7��\@&�.7��j<!��Qhԥd��…
206 ����K�ɣ��~����0\��*T �ݭ���0�ʹ���I��F2��T�*�x��V�Y���֙�6b!� �g��w5�&f����zQ���@ �� ��*�…
263 …V�^�u�����li�˚$"�J��.�CjJ�[m�mGC&�4�p� o>��\�b�;"k22�sm��h�h%��6'u�#�Y�����R�͚*e��v9�Z���…
[all …]
/cts/hostsidetests/appsecurity/certs/keysets/
Dcts-keyset-test-a.x509.pem18 i0TJhPAB4dFqrDgxr+4Y
/cts/apps/CameraITS/tests/sensor_fusion/
Dtest_sensor_fusion.py371 def procrustes_rotation(X, Y): argument
385 Y0 = (Y-Y.mean(0)) / numpy.sqrt(((Y-Y.mean(0))**2.0).sum())
/cts/tests/tests/media/libmediandkjni/
Dcodec-utils-jni.cpp359 uint64_t Y = *ycol; in getRawStats() local
363 sum_x[0] += Y; in getRawStats()
366 sum_xx[0] += Y * Y; in getRawStats()
369 sum_xy[0] += Y * U; in getRawStats()
370 sum_xy[1] += Y * V; in getRawStats()
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/rs/
DRawConverter.java411 private static double[] calculateCIExyCoordinates(double X, double Y, double Z) { in calculateCIExyCoordinates() argument
413 ret[0] = X / (X + Y + Z); in calculateCIExyCoordinates()
414 ret[1] = Y / (X + Y + Z); in calculateCIExyCoordinates()
/cts/suite/cts/deviceTests/browserbench/assets/octane/
Dbox2d.js27 function Y(){Y.b2ManifoldPoint.apply(this,arguments);this.constructor===Y&&this.b2ManifoldPoint.app… class
42 …amicTreePair=I;Box2D.Collision.b2Manifold=W;Box2D.Collision.b2ManifoldPoint=Y;Box2D.Collision.b2Po…
50 …n.b2ContactID,I=Box2D.Collision.b2ContactPoint,W=Box2D.Collision.b2Distance,Y=Box2D.Collision.b2Di…
76 new Vector_a2j_Number(3);Box2D.Collision.b2Distance.s_saveB=new Vector_a2j_Number(3)});Y.b2Distance…
113 …meOfImpact.s_cache=new l;Box2D.Collision.b2TimeOfImpact.s_distanceInput=new Y;Box2D.Collision.b2Ti…
122 Y=Box2D.Collision.b2SimplexCache;Box2D.inherit(G,Box2D.Collision.Shapes.b2Shape);G.prototype.__supe…
152 …B=new W;H.proxyB.Set(u);H.transformA=z;H.transformB=D;H.useRadii=true;k=new Y;k.count=0;z=new I;M.…
167Y=this.col2.y,k=this.col2.z,z=this.col3.x,u=this.col3.y,D=this.col3.z,H=M*(Y*D-k*u)+L*(k*z-W*D)+I*…
181 …I=Box2D.Collision.Shapes.b2MassData,W=Box2D.Collision.Shapes.b2PolygonShape,Y=Box2D.Collision.Shap…
251 …b.Query(function(f){f=b.GetUserData(f)instanceof S?b.GetUserData(f):null;if(Y.TestOverlap(c,g,f.Ge…
[all …]
/cts/tests/tests/media/res/raw/
Dtestmp3_3.raw1Y+379v/76t9TcoZnSmgexe0gSvVEgQCFN+B9YaFdeiWYcDP3HMoJdQJm1LleUH+K84vgs01C9thFW/5moTa/m5e+Z+t2WXR2c4…
/cts/tools/signature-tools/spec/
Dandroid.spec658 …sq�~�w ���?@������xq�~��sq�~�w ���?@�����sq�~�9sq�~�w ���?@������xq�~Ysq�~�w ���?@�����…
661 …�sq�~�Qsq�~�w ���?@������xsq�~�.q�~O_xq�~�Esq�~�Jsq�~�w ���?@������xq�~Y�sq�~�w ���?@�����…
662 …~�.q�~�qsq�~�Qsq�~�w ���?@������xq�~Mxq�~�Esq�~�Jsq�~�w ���?@������xq�~Y�sq�~�w ���?@�����…
663 …�sq�~�Qsq�~�w ���?@������xsq�~�.q�~(�xq�~�Esq�~�Jsq�~�w ���?@������xq�~Y�sq�~�w ���?@�����…
664 …~�.q�~(�sq�~�Qsq�~�w ���?@������xq�~Mxq�~�Esq�~�Jsq�~�w ���?@������xq�~Y�sq�~�w ���?@�����…
2798 …�sq�~�Qsq�~�w ���?@������xsq�~�.q�X�xq�~�Esq�~�Jsq�~�w ���?@������xq�Y�q�~� sq�~�q�~� uq�~…
2799 …~�.q�X�sq�~�Qsq�~�w ���?@������xq�~�`xq�~�Esq�~�Jsq�~�w ���?@������xq�Y�q�~� sq�~�q�~� uq�~…
2800 …sq�~�w ���?@������xq�~��sq�~�w ���?@����� sq�~�9sq�~�w ���?@������xq�Y�q�~� sq�~�q�~� uq�~…
2801 …��sq�~�Qsq�~�w ���?@������xq�~�`xq�~�Eq�~�sq�~�9sq�~�w ���?@������xq�Y�q�~� sq�~�q�~� uq�~…