/cts/tests/tests/rscpp/src/android/cts/rscpp/ |
D | RSColorMatrixTest.java | 32 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 …]
|
D | RSBlurTest.java | 32 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 …]
|
D | RSConvolveTest.java | 32 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 …]
|
D | RSLUTTest.java | 32 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
|
D | RSBlendTest.java | 32 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
|
D | RS3DLUTTest.java | 32 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
|
D | RSYuvTest.java | 80 native boolean yuvTest(String path, int X, int Y, byte[] input, byte[] output, int yuvFormat); in yuvTest() argument
|
/cts/tests/tests/rscpp/librscpptest/ |
D | rs_jni.cpp | 84 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 …]
|
D | rs_jni_foreach.cpp | 294 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/ |
D | TestCtxDim.java | 30 int Y = 5; in test() local 31 script.set_gDimY(Y); in test() 32 typeBuilder.setY(Y); in test()
|
D | yuv.rs | 28 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;
|
D | ForEachTest.java | 466 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()
|
D | KernelTest.java | 466 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()
|
D | IntrinsicBLAS.java | 205 …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/ |
D | fileSequence0.ts | 4 …�P�) S*�����X!������SB[Y���ͤ��?�Ɏʩ��Aj�b�!G;wp�2�BQ5Ǣ�M-��� p���\�u������<��gg�w^_{… 17 a&���a����� Kh�J2�֭�ǠQ*��0A�fY�]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��eTW���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����1yhY���\���գE����FZ�U… [all …]
|
D | segment000000.ts | 54 …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�fY�]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�gGJ4W�-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 …]
|
D | segment000001.ts | 9 kXf?̋���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 …�������������������������������������������������������Ge��f��bޓ��L�Z�Y���(TW]�o�h����_��w�… 126 :3e��_>{BA���Ng5N���ָ�Zѳy�Y�4Č�������(ЭP������ 142 �Y��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�UUWU�'Y�+��v6_���Wƽ*��"_������ȞzEy��G1Q�������������������������… 177 �6$=5�O^�mV�U�K�|��}����XA�AGl�45?�@~j@!�\IG����>�����Y��cUuZ�ʪ�j�UU^ ]UV���U… [all …]
|
D | fileSequence1.ts | 16 …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�$�… 161 �Y^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��VY���֙�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/ |
D | cts-keyset-test-a.x509.pem | 18 i0TJhPAB4dFqrDgxr+4Y
|
/cts/apps/CameraITS/tests/sensor_fusion/ |
D | test_sensor_fusion.py | 371 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/ |
D | codec-utils-jni.cpp | 359 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/ |
D | RawConverter.java | 411 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/ |
D | box2d.js | 27 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.… 167 …Y=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/ |
D | testmp3_3.raw | 1 …Y+379v/76t9TcoZnSmgexe0gSvVEgQCFN+B9YaFdeiWYcDP3HMoJdQJm1LleUH+K84vgs01C9thFW/5moTa/m5e+Z+t2WXR2c4…
|
/cts/tools/signature-tools/spec/ |
D | android.spec | 658 …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~.qX�xq~Esq~Jsq~w?@xqY�q~sq~q~ uq~… 2799 …~.qX�sq~Qsq~w?@xq~`xq~Esq~Jsq~w?@xqY�q~sq~q~ uq~… 2800 …sq~w?@xq~�sq~w?@ sq~9sq~w?@xqY�q~sq~q~ uq~… 2801 …sq~Qsq~w?@xq~`xq~Eq~�sq~9sq~w?@xqY�q~sq~q~ uq~…
|