Home
last modified time | relevance | path

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

123456789

/cts/tests/tests/rscpp/librscpptest/
Dfe_all.rscript18 aout[0].z = ain[0].z + 1;
25 aout[0].z = ain[0].z + 1;
44 aout[0].z = ain[0].z + 1;
51 aout[0].z = ain[0].z + 1;
70 aout[0].z = ain[0].z + 1;
77 aout[0].z = ain[0].z + 1;
96 aout[0].z = ain[0].z + 1;
103 aout[0].z = ain[0].z + 1;
122 aout[0].z = ain[0].z + 1.0f;
129 aout[0].z = ain[0].z + 1.0f;
[all …]
/cts/tests/tests/renderscript/src/android/renderscript/cts/
DComputeTest.java63 b3.z = 2; in testJavaVectorTypes()
67 assertTrue(b3.z == 3); in testJavaVectorTypes()
76 assertTrue(b4.z == 3); in testJavaVectorTypes()
88 d3.z = 3.0; in testJavaVectorTypes()
92 assertTrue(d3.z == 3.0); in testJavaVectorTypes()
101 assertTrue(d4.z == 3.0); in testJavaVectorTypes()
113 f3.z = 3.0f; in testJavaVectorTypes()
117 assertTrue(f3.z == 3.0f); in testJavaVectorTypes()
126 assertTrue(f4.z == 3.0f); in testJavaVectorTypes()
138 i3.z = 3; in testJavaVectorTypes()
[all …]
Dfe_all.rscript18 aout[0].z = ain[0].z + 1;
25 aout[0].z = ain[0].z + 1;
44 aout[0].z = ain[0].z + 1;
51 aout[0].z = ain[0].z + 1;
70 aout[0].z = ain[0].z + 1;
77 aout[0].z = ain[0].z + 1;
96 aout[0].z = ain[0].z + 1;
103 aout[0].z = ain[0].z + 1;
122 aout[0].z = ain[0].z + 1.0f;
129 aout[0].z = ain[0].z + 1.0f;
[all …]
Dkernel_all.rscript19 r.z = ain.z + 1;
27 r.z = ain.z + 1;
47 r.z = ain.z + 1;
55 r.z = ain.z + 1;
75 r.z = ain.z + 1;
83 r.z = ain.z + 1;
103 r.z = ain.z + 1;
111 r.z = ain.z + 1;
131 r.z = ain.z + 1.0f;
139 r.z = ain.z + 1.0f;
[all …]
Dvector.rscript53 _RS_ASSERT(f3.z == 4.99f);
57 _RS_ASSERT(f4.z == 4.99f);
66 _RS_ASSERT(d3.z == 4.99);
70 _RS_ASSERT(d4.z == 4.99);
79 _RS_ASSERT(i8_3.z == 4);
83 _RS_ASSERT(i8_4.z == 4);
92 _RS_ASSERT(u8_3.z == 4);
96 _RS_ASSERT(u8_4.z == 4);
105 _RS_ASSERT(i16_3.z == 4);
109 _RS_ASSERT(i16_4.z == 4);
[all …]
Dintrinsic_3dlut.rscript27 gDims.z = rsAllocationGetDimZ(gCube);
38 float4 v000 = convert_float4(rsGetElementAt_uchar4(gCube, coord1.x, coord1.y, coord1.z));
39 float4 v100 = convert_float4(rsGetElementAt_uchar4(gCube, coord2.x, coord1.y, coord1.z));
40 float4 v010 = convert_float4(rsGetElementAt_uchar4(gCube, coord1.x, coord2.y, coord1.z));
41 float4 v110 = convert_float4(rsGetElementAt_uchar4(gCube, coord2.x, coord2.y, coord1.z));
42 float4 v001 = convert_float4(rsGetElementAt_uchar4(gCube, coord1.x, coord1.y, coord2.z));
43 float4 v101 = convert_float4(rsGetElementAt_uchar4(gCube, coord2.x, coord1.y, coord2.z));
44 float4 v011 = convert_float4(rsGetElementAt_uchar4(gCube, coord1.x, coord2.y, coord2.z));
45 float4 v111 = convert_float4(rsGetElementAt_uchar4(gCube, coord2.x, coord2.y, coord2.z));
55 float4 v = mix(z0, z1, f.z);
DIntrinsic3DLut.java46 for (int z = 0; z < sz; z++) { in genCubeIdent()
52 v |= (0xff * z / (sz - 1)) << 16; in genCubeIdent()
53 dat[z*sy*sx + y*sx + x] = v; in genCubeIdent()
64 for (int z = 0; z < sz; z++) { in genCubeRand()
71 dat[z*sy*sx + y*sx + x] = v; in genCubeRand()
Dgetset.rscript110 uint z = idx / (gWidth * gHeight); \
111 ty i = rsGetElementAt_##ty(gAlloc3DIn, x, y, z); \
112 rsSetElementAt_##ty(gAlloc3DOut, i, x, y, z); \
118 uint z = idx / (realWidth * gHeight); \
119 ty##2 i = rsGetElementAt_##ty##2(gAlloc3DIn, x, y, z); \
120 rsSetElementAt_##ty##2(gAlloc3DOut, i, x, y, z); \
126 uint z = idx / (realWidth * gHeight); \
127 ty##3 i = rsGetElementAt_##ty##3(gAlloc3DIn, x, y, z); \
128 rsSetElementAt_##ty##3(gAlloc3DOut, i, x, y, z); \
134 uint z = idx / (realWidth * gHeight); \
[all …]
DLaunchClip.java44 void setup(boolean makeIn, boolean makeOut, int x, int y, int z, boolean face, boolean lods, in setup() argument
49 mDimZ = z; in setup()
114 private void verifyCell(int x, int y, int z, int[] a, Script.LaunchOptions sc) { in verifyCell() argument
135 if (z >= sc.getZStart() && z < sc.getZEnd()) { in verifyCell()
136 expected |= z << 16; in verifyCell()
146 int val = a[x + y * mDimX + z * mDimX * mDimY]; in verifyCell()
148 String s = new String("verify error @ " + x + ", " + y + ", " + z + in verifyCell()
161 for (int z = 0; z < itZ; z++) { in verifyRange()
162 verifyCell(x, y, z, a, sc); in verifyRange()
Dprimitives.rscript77 _RS_ASSERT(avt->b3.z == 3);
80 _RS_ASSERT(avt->b4.z == 3);
87 _RS_ASSERT(avt->s3.z == 3);
90 _RS_ASSERT(avt->s4.z == 3);
97 _RS_ASSERT(avt->i3.z == 3);
100 _RS_ASSERT(avt->i4.z == 3);
107 _RS_ASSERT(avt->f3.z == 3.0f);
110 _RS_ASSERT(avt->f4.z == 3.0f);
DStructFieldTest.java42 innerTwo.z = (byte)r.nextInt(); in makeInnerTwo()
67 outer.innerTwo3[0].z, in testStructField()
69 outer.innerTwo3[1].z, in testStructField()
71 outer.innerTwo3[2].z, in testStructField()
73 outer.innerTwo2[0].z, in testStructField()
75 outer.innerTwo2[1].z, in testStructField()
DRsPackColorTo8888Test.java137 color.z *= 255.f; in rs_PackColorTo8888()
140 color.z += 0.5f; in rs_PackColorTo8888()
142 (byte) color.x, (byte) color.y, (byte) color.z, (byte) 255 in rs_PackColorTo8888()
150 color.z *= 255.f; in rs_PackColorTo8888()
153 color.z += 0.5f; in rs_PackColorTo8888()
157 (byte) color.x, (byte) color.y, (byte) color.z, (byte) color.w in rs_PackColorTo8888()
/cts/tests/openglperf2/jni/graphics/
DMatrix.cpp76 void Matrix::translate(float x, float y, float z) { in translate() argument
77 Matrix* m = newTranslate(x, y, z); in translate()
86 void Matrix::scale(float x, float y, float z) { in scale() argument
87 Matrix* m = newScale(x, y, z); in scale()
96 void Matrix::rotate(float radians, float x, float y, float z) { in rotate() argument
97 Matrix* m = newRotate(radians, x, y, z); in rotate()
113 float z = 0; in multiply() local
121 z += lhs[j4 + 2] * e; in multiply()
127 mData[i4 + 2] = z; in multiply()
225 Matrix* Matrix::newTranslate(float x, float y, float z) { in newTranslate() argument
[all …]
DMatrix.h30 void translate(float x, float y, float z);
32 void scale(float x, float y, float z);
34 void rotate(float radians, float x, float y, float z);
47 static Matrix* newTranslate(float x, float y, float z);
49 static Matrix* newScale(float x, float y, float z);
51 static Matrix* newRotate(float radians, float x, float y, float z);
/cts/tests/camera/src/android/hardware/camera2/cts/rs/
Draw_converter.rscript77 ret.z = gammaEncode(rgb.z);
101 if (sorted.z < sorted.y) {
102 tmp = sorted.z;
103 sorted.z = sorted.y;
113 if (sorted.z < sorted.y) {
114 tmp = sorted.z;
115 sorted.z = sorted.y;
122 minmax.y = sorted.z;
127 minmax * toneMapCoeffs.z + toneMapCoeffs.w;
131 if (sorted.z == sorted.x) {
[all …]
/cts/tests/tests/security/res/raw/
Ddrm_uaf.dm12 …��Z���� Q��qor��6;�p<�- �� ?�+Ƴ�ki�VR���J��� ����<�d����+��6aD���h)z�����\H� <��Z��^�'…
23 ��h�?��n ��(h+�I�ǽ|�R`<�2��*!��*��p��q�z����%7 �8���<�%�~~<�^�Kv��v_ա�8:��v�|p<����y?-��…
25 �4��-?�k��w�K�4��+��b�%���<@<�%�Հ��,�Ʊ����)���)�<_��<����v ~�<�r#O�d�!����6z�<�,����…
28 ��_,y�Wa2�5���]�@1G>-. ���<�%9�'��YZc_��,/������j$����2p<��@g�E?-��t���z�,2z 9�F�]��<�#)���…
32 …ʕ��t�`��������3`<y',0&�Z��U��<��\A�_�@VQ��<���zh+�J�a�x_#щ@-f5�^�*p<�"��8���ԛ ��kW;qbR…
36 E�h�=�P<��������z�cF�^��F�@��=[��<U����ߥW7ϋ�l�](g@�7�<7�<�.�����jJ�4x��c�w�vď���…
37 z��6�j���#� �L�0��Gፐ�,_�<a-)�[<�ZWG
40 …^o�$�5�z�<�-,���hmy��<X��5��ʄI��>���<��g�� _�w�W��%�P��g���q��� <�"x��Å�AI\*�)�Xו�:���…
42 j���^r�` P�P<�w#�\^��o�ݵpB�Ӑ��3����<����<��&�Nl�i�ZT�w����\����W�>c�!0<��Z~��F��G��h��z5�:�…
45 ���(̌'�w"�_&45�@<�%-'�^�w�Ā!}#z"Q��z�eXt��<G
/cts/tests/tests/graphics/src/android/graphics/cts/utils/
DColorUtils.java45 public static int xyzToColor(double x, double y, double z) { in xyzToColor() argument
46 double r = (x * 3.2406 + y * -1.5372 + z * -0.4986) / 100; in xyzToColor()
47 double g = (x * -0.9689 + y * 1.8758 + z * 0.0415) / 100; in xyzToColor()
48 double b = (x * 0.0557 + y * -0.2040 + z * 1.0570) / 100; in xyzToColor()
/cts/apps/CameraITS/utils/
Dcamera_properties_utils.py700 z = rotation[2]
702 return np.array([[1-2*y**2-2*z**2, 2*x*y-2*z*w, 2*x*z+2*y*w],
703 [2*x*y+2*z*w, 1-2*x**2-2*z**2, 2*y*z-2*x*w],
704 [2*x*z-2*y*w, 2*y*z+2*x*w, 1-2*x**2-2*y**2]])
/cts/tests/tests/media/assets/hls_variant/344388/
D04.ts2 …�������b����h� ��e�� �����3>�6���|���[�:^ա�)���(c��A����}dj�08�w5z�ow���,��ϊW�pNy\�M8…
22 …�LG�6�"+��oBk���`��I:��0�e�.�H��˃G�dC~O�� ���gct�J��ü#���D��C6�ɕY�! z��� ����$�m�������…
29 ����8s�.P��$�Y�����z�r<�{"�P�|G�)N�)*b}�c��RZ�B�:���E��z���yy���{#�[x��@Jڽ�\/�aЮJ��I…
43z>�A��l����*���JI��t�(�:����+Ъxl��G�v"��}P�2�Pz��g藛�":ߧ��=Y'�b��
64 �����}z��GQn-Fؿ#=�::�*�r��|�P�X���p�5��?�X+�o��G�P�����z�o�E&���ͰP�3h��1��A=-� 4ׂ�/d�…
65 |Gh�emPp��a�� �< �o�l9��/�F�ә��җt�s#n��u`��z%56�
80 jbS�P��7�@dɪ�Fx,��m��� C�z*B�j�\%��Z������^��=�����N�Q{EL���ڴ������g� F>/b���Rq� �Lay��…
95 ��r`�h��#��� �b³C����t���b�'�=��'�"���m�~WG��Xo�x��[�٢���N�s��Z��p���i�4z��5� �ܤǡ��� ��k…
116 …���������������@�� BS�%N��C�14�o���9$��h�r��;���Ahɂ�Λ۟�����s6ޠ!�Mq�u �z���$ !��w�q<��ˣ�%�r…
156 …������������w�9��8}G���=���G�T����ㆴް�A�Pyd�Z���}�:�n�6O�: �����z�m���=�����( ��h�_� …
D16.ts2 …�������b����h� ��e�� �����3>�6���|���[�:^ա�)���(c��A����}dj�08�w5z�ow���,��ϊW�o�ґ��0�…
13 U�u0q��Dñ�,��u�� ސ~�����E���U��,��7pOr`��K��ESS��ut�m��z~[���Ǐ�6M���
14 3��/gz#��X��D���x�
42 �����*��vK��jn�V���w��"ݻ�Ie���N�Xe�.�P)�'��b�Ǐ��G���}�t֢i�o?A4�q�z�����+N�s���Pp�:�X������Wť…
62 …�$]F���2�$V�bO�P�媬���p�Q������l�,����#Zl�" ����x!����j!g����`�Ly:?>I"z�)H0�GA�����!�…
84 �o�I�ѥ�z�G���WT�+A!��wJ�� ���y���������n)qoˮN�d@���;�����h*sP;S��`���`~R��*~���
147 …���������������������������������������GA�������!�u���� ���A���8Q��*D�ջ�_5�NB�2D&�z���
149 …���te $2} �>�{�!�#�ۃD��bzj�P%_P2)-�nPS�Ȥ���0��2�s;�ƜcϩfP�_� G��;\z�-V�z��r9Ht2���ǜ����X*�…
577 … ��20y��ALf����:#[Y�*��M�F���hU`j"�kS�<u�l�t��g�t~W�-oȽcKB=�1 �%1z�ta����$��;�~�Wӻ�Rͅ…
615 �ĒF3-<%3�~*-F���ox��e[f:�yP/[͖�G�wN��m[�[-F8"i��nЙ���]��pjg�ov�����2�z�ùh�Q����+��
[all …]
D19.ts5 z����z�U H��p�����r����x�x9���f ���4K,k�U��ğ���j�bSk�����<77*B*�EG� J�7��3�c�:Ȝ@��bM�(�o꨺�…
14 …���!7<�'����2�����(�,o����h��3q�F%��hπI�H1A��3��1�N�g��`.�)�W�@E �\�z���Q)�y��B��+�"�C����…
37 …����L���r��o�Kڐ��(Ѷu{�k_!�3N���1jR@��#4z|����!��fbC��{��)ǯ ��2ߨgڄ���G��v(�Ow A���҅�h�…
39 ��t {�>u��1H�bS���B'tm��9�E��Ͱ��1F��w�P��ti)쓾M��QbE��2z�1������$�u" �g�b���@��GIG�����W:…
55 …/��.\��"A:��q8Ox��F \�U�{�'R�oi��b�l���ы�trM�3b��0�:�?ڼ ��B����a(z�[x� W��f���� �\��{�Z…
61 …���j�پ����.����P����{#�,&��ڑ�����٤`��E�W ���9�ݖ&�=!tJ�*��1��7`�f�"�.z���V��Vs��@9aK����íς…
62 ���} �3���[��G�MG��� �1��>����&,�v���H�\D)���r̫Ą�)Ǡ �Ʒ�w��h%z�G�a�'�LKg�M�ݦ�h���J�m7i5��…
74 |�w��D��S%fd�كvMǓ�����0z�G�8{�����������������������������������������������������������������…
79 …rJ�YW�t�j��w��iˢ]y~�ʑ*��m@�Q�b�����w�9���\?�<P@wX8'�2Ц�Z ��0795��z{�G��lљY!��~�3…
86 ����C��w�v�G��Q���Ez�=/��z�b�'dӄ8��S[��IU�0*$��bg�eK�� ��'p�+�Sfr�� ��b��x�*� ��si�P%pG…
D05.ts43 ��jld]z����
63 …X'�R��)���hX�9T �0�H"�z�4�-��7nDz[��$(c���I��ӣ|��ٜ�e�jSL�����Қ�crGT��\0}V$�<N��e…
65 …AI����9�뀭�a:�"��o��7GП\�dA`w��+�x' r�V��?�Zb��ŧ�!�bk)���M1͵�6��G��gD{z�)�38�l9�^^�wÑ���$�~…
83 D�M^�Jh�{��"��йoXZw�s���%�4��ƹ)�Yu4Lq�G�,���ji-1)��(��z��UoL�5Q�&�����;��x����"���eG�6m]…
113 …���������;���2$���Dx��r!D1:�~Sg����,j�p�Gi�G�������k�ϯ<�QѲ��5��?cW�?dog�d#z�=fay!�Ve{�]
125 �e��P�,t>T���<��^k'G�G����!Xt�L����7!N�8��Lj��gqUKb�2�u�z�.�B��#Q
147 …hVYp��eW��ђ�Ǩ�T����]� Pd�"�)PV(™���l�yn���ە*�R���߿�X�}Qn0�&��D�OZ��|j��z��o�}�⹔!'���G1e�f��…
155 …�GA����̈́�!������� ���A�OJD7��0�25�W�B�z�nEqLM0�d�/y<�ڻ�����\w�IQdՐk������q��o��b+�…
167 …�_�IauG,9֗>���R2��ͨ؋4�Z�"������k�?}���Fo,�v�7����~pd�7�Jj�� ���S��z&���!!���t�^e5�q…
198 …����������������������������������������]����t�} ���-[�_ƥ�� ���cޘI�|r8��z�x�a} ��0 9C��R'…
/cts/tests/camera/src/android/hardware/camera2/cts/
Dmeans_yuvx_444_2d_to_1d.rscript48 sum.z += elem.z;
53 sum.z *= inv_width; // multiply by 1/w
75 sum.z += elem.z;
80 sum.z *= inv_width; // multiply by 1/w
/cts/tests/tests/media/assets/
Dsegment000001.ts12 G���t@ņ�3���[�z.�/ˀ�H��� lV�Rqp(7P\s�5*z
17 ���c��Vֱf�&:�H7UfwY�������7Q��z���f�Hō:���[����������d"o���x"�Մ�����ߝ.~5���x����&�� �q���>�…
28z�ȸ��V�-�F�D���S��=H����م?y��SR����L�0c����iy��h���a*�DƝ�L�l&�JMV�k&N��N�?Y�e��}�}�s�…
39 .ŧ�G��Hj�� "����}��@�z�ooO�O����o��ؖ�?����3Ja���-�f8��6l � ���[|��e†���:g#(����G{�}��…
107 …_��`��Dy�_�E~�iz<���\E�X�Q���*B�،7 ��G���0ڵ��2�����Ҏ3�}�J�%xs�ر���z�sogr��~ť`������r�'…
136 , /��%�� 堏��i�*b3��F`�p4X��Q�1K�z�8�pĤ����ê�f�X�rʨg�E7�G��ć���A96�����UЇPM|���.�Q�E�le��…
137 ��7R�^����@7� z�h
148 2�p9 @���fq��\��?�u������T�yW�f|g�!�VA�U[�8r5��,"ˊcha�Mv:2� l��z���+Pj<�Æ�˫x����3�O� �@�G�…
154 �,��|I J��`�.�Q|�ط�(꺯z u]W�Q�sb�g!#-�W&��?GA�=�z������8��!�?�?��� ����A�`�Mł�;
164 �,��� ���#ś�~��k��~>���.��� ���u.�}W�Z��MU_h�z��\h��_�� �"����`!f<��B�A��"*���,G�…
/cts/tests/tests/media/res/raw/
Dsegment000001.ts12 G���t@ņ�3���[�z.�/ˀ�H��� lV�Rqp(7P\s�5*z
17 ���c��Vֱf�&:�H7UfwY�������7Q��z���f�Hō:���[����������d"o���x"�Մ�����ߝ.~5���x����&�� �q���>�…
28z�ȸ��V�-�F�D���S��=H����م?y��SR����L�0c����iy��h���a*�DƝ�L�l&�JMV�k&N��N�?Y�e��}�}�s�…
39 .ŧ�G��Hj�� "����}��@�z�ooO�O����o��ؖ�?����3Ja���-�f8��6l � ���[|��e†���:g#(����G{�}��…
107 …_��`��Dy�_�E~�iz<���\E�X�Q���*B�،7 ��G���0ڵ��2�����Ҏ3�}�J�%xs�ر���z�sogr��~ť`������r�'…
136 , /��%�� 堏��i�*b3��F`�p4X��Q�1K�z�8�pĤ����ê�f�X�rʨg�E7�G��ć���A96�����UЇPM|���.�Q�E�le��…
137 ��7R�^����@7� z�h
148 2�p9 @���fq��\��?�u������T�yW�f|g�!�VA�U[�8r5��,"ˊcha�Mv:2� l��z���+Pj<�Æ�˫x����3�O� �@�G�…
154 �,��|I J��`�.�Q|�ط�(꺯z u]W�Q�sb�g!#-�W&��?GA�=�z������8��!�?�?��� ����A�`�Mł�;
164 �,��� ���#ś�~��k��~>���.��� ���u.�}W�Z��MU_h�z��\h��_�� �"����`!f<��B�A��"*���,G�…

123456789