Home
last modified time | relevance | path

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

12345678910>>...105

/external/valgrind/main/memcheck/tests/
Dpdb-realloc2.stdout.exp1 pdb_realloc: z = 0
2 pdb_realloc: z = 1
3 pdb_realloc: z = 2
4 pdb_realloc: z = 3
5 pdb_realloc: z = 4
6 pdb_realloc: z = 5
7 pdb_realloc: z = 6
8 pdb_realloc: z = 7
9 pdb_realloc: z = 8
10 pdb_realloc: z = 9
[all …]
/external/valgrind/main/none/tests/amd64/
Dbug127521-64.c115 ULong z = 0xDEADBEEF00000000ULL; in main() local
126 try8b( 0+z,1+z, 5+z,4+z, 3+z,2+z ); in main()
127 try8b( 0+z,1+z, 0+z,1+z, 3+z,2+z ); in main()
129 try8b( 0+z,1+z, 0+z,4+z, 3+z,2+z ); in main()
130 try8b( 0+z,1+z, 0+z,0+z, 3+z,2+z ); in main()
132 try8b( 0+z,1+z, 5+z,0+z, 3+z,2+z ); in main()
133 try8b( 0+z,1+z, 1+z,1+z, 3+z,2+z ); in main()
144 try16b( 0+z,1+z, 5+z,4+z, 3+z,2+z ); in main()
145 try16b( 0+z,1+z, 0+z,1+z, 3+z,2+z ); in main()
147 try16b( 0+z,1+z, 0+z,4+z, 3+z,2+z ); in main()
[all …]
/external/tcpdump/
Dprint-zephyr.c137 struct z_packet z; in zephyr_print() local
155 PARSE_FIELD_STR(z.version); in zephyr_print()
157 if (strncmp(z.version, "ZEPH", 4)) in zephyr_print()
160 PARSE_FIELD_INT(z.numfields); in zephyr_print()
161 PARSE_FIELD_INT(z.kind); in zephyr_print()
162 PARSE_FIELD_STR(z.uid); in zephyr_print()
163 PARSE_FIELD_INT(z.port); in zephyr_print()
164 PARSE_FIELD_INT(z.auth); in zephyr_print()
165 PARSE_FIELD_INT(z.authlen); in zephyr_print()
166 PARSE_FIELD_STR(z.authdata); in zephyr_print()
[all …]
/external/stlport/src/
Dcomplex_trig.cpp68 static complex<_Tp> sinT(const complex<_Tp>& z) { in sinT() argument
69 return complex<_Tp>(::sin(z._M_re) * ::cosh(z._M_im), in sinT()
70 ::cos(z._M_re) * ::sinh(z._M_im)); in sinT()
73 _STLP_DECLSPEC complex<float> _STLP_CALL sin(const complex<float>& z) in sin() argument
74 { return sinT(z); } in sin()
76 _STLP_DECLSPEC complex<double> _STLP_CALL sin(const complex<double>& z) in sin() argument
77 { return sinT(z); } in sin()
80 _STLP_DECLSPEC complex<long double> _STLP_CALL sin(const complex<long double>& z) in sin() argument
81 { return sinT(z); } in sin()
87 static complex<_Tp> cosT(const complex<_Tp>& z) { in cosT() argument
[all …]
/external/dropbear/libtomcrypt/demos/
Dtv_gen.c118 unsigned long outlen, x, y, z; in hash_gen() local
136 for (z = 0; z < y; z++) { in hash_gen()
137 buf[z] = (unsigned char)(z & 255); in hash_gen()
145 for (z = 0; z < outlen; z++) { in hash_gen()
146 fprintf(out, "%02X", md[z]); in hash_gen()
159 unsigned long x, y, z, w; in cipher_gen() local
195 for (z = 0; (int)z < kl; z++) { in cipher_gen()
196 key[z] = (unsigned char)z; in cipher_gen()
203 for (z = 0; (int)z < cipher_descriptor[x].block_length; z++) { in cipher_gen()
204 pt[z] = (unsigned char)z; in cipher_gen()
[all …]
/external/dropbear/libtomcrypt/src/pk/asn1/der/sequence/
Dder_encode_sequence_ex.c35 unsigned long size, x, y, z, i; in der_encode_sequence_ex() local
144 z = y; in der_encode_sequence_ex()
172 if (z < 128) { in der_encode_sequence_ex()
173 out[x++] = (unsigned char)z; in der_encode_sequence_ex()
174 } else if (z < 256) { in der_encode_sequence_ex()
176 out[x++] = (unsigned char)z; in der_encode_sequence_ex()
177 } else if (z < 65536UL) { in der_encode_sequence_ex()
179 out[x++] = (unsigned char)((z>>8UL)&255); in der_encode_sequence_ex()
180 out[x++] = (unsigned char)(z&255); in der_encode_sequence_ex()
181 } else if (z < 16777216UL) { in der_encode_sequence_ex()
[all …]
Dder_decode_sequence_ex.c35 unsigned long size, x, y, z, i, blksize; in der_decode_sequence_ex() local
86 z = 0; in der_decode_sequence_ex()
98 z = inlen; in der_decode_sequence_ex()
99 if ((err = der_decode_boolean(in + x, z, ((int *)data))) != CRYPT_OK) { in der_decode_sequence_ex()
102 if ((err = der_length_boolean(&z)) != CRYPT_OK) { in der_decode_sequence_ex()
108 z = inlen; in der_decode_sequence_ex()
109 if ((err = der_decode_integer(in + x, z, data)) != CRYPT_OK) { in der_decode_sequence_ex()
113 if ((err = der_length_integer(data, &z)) != CRYPT_OK) { in der_decode_sequence_ex()
119 z = inlen; in der_decode_sequence_ex()
120 if ((err = der_decode_short_integer(in + x, z, data)) != CRYPT_OK) { in der_decode_sequence_ex()
[all …]
/external/fdlibm/
De_acos.c67 double z,p,q,r,w,s,c,df; local
80 z = x*x;
81 p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5)))));
82 q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4)));
86 z = (one+x)*0.5;
87 p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5)))));
88 q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4)));
89 s = ieee_sqrt(z);
94 z = (one-x)*0.5;
95 s = ieee_sqrt(z);
[all …]
De_j0.c95 double z, s,c,ss,cc,r,u,v; local
108 z = -ieee_cos(x+x);
109 if ((s*c)<zero) cc = z/ss;
110 else ss = z/cc;
116 if(ix>0x48000000) z = (invsqrtpi*cc)/ieee_sqrt(x);
119 z = invsqrtpi*(u*cc-v*ss)/ieee_sqrt(x);
121 return z;
129 z = x*x;
130 r = z*(R02+z*(R03+z*(R04+z*R05)));
131 s = one+z*(S01+z*(S02+z*(S03+z*S04)));
[all …]
De_j1.c96 double z, s,c,ss,cc,r,u,v,y; local
109 z = ieee_cos(y+y);
110 if ((s*c)>zero) cc = z/ss;
111 else ss = z/cc;
117 if(ix>0x48000000) z = (invsqrtpi*cc)/ieee_sqrt(y);
120 z = invsqrtpi*(u*cc-v*ss)/ieee_sqrt(y);
122 if(hx<0) return -z;
123 else return z;
128 z = x*x;
129 r = z*(r00+z*(r01+z*(r02+z*r03)));
[all …]
/external/jmonkeyengine/engine/src/core/com/jme3/math/
DVector3f.java87 public float z; field in Vector3f
95 x = y = z = 0; in Vector3f()
109 public Vector3f(float x, float y, float z) { in Vector3f() argument
112 this.z = z; in Vector3f()
136 public Vector3f set(float x, float y, float z) { in set() argument
139 this.z = z; in set()
154 this.z = vect.z; in set()
173 return new Vector3f(x + vec.x, y + vec.y, z + vec.z); in add()
190 result.z = z + vec.z; in add()
210 z += vec.z; in addLocal()
[all …]
DVector4f.java84 public float z; field in Vector4f
97 x = y = z = w = 0; in Vector4f()
113 public Vector4f(float x, float y, float z, float w) { in Vector4f() argument
116 this.z = z; in Vector4f()
143 public Vector4f set(float x, float y, float z, float w) { in set() argument
146 this.z = z; in set()
162 this.z = vect.z; in set()
182 return new Vector4f(x + vec.x, y + vec.y, z + vec.z, w + vec.w); in add()
199 result.z = z + vec.z; in add()
220 z += vec.z; in addLocal()
[all …]
DQuaternion.java69 protected float x, y, z, w; field in Quaternion
79 z = 0; in Quaternion()
96 public Quaternion(float x, float y, float z, float w) { in Quaternion() argument
99 this.z = z; in Quaternion()
112 return z; in getZ()
133 public Quaternion set(float x, float y, float z, float w) { in set() argument
136 this.z = z; in set()
153 this.z = q.z; in set()
195 this.z = q.z; in Quaternion()
203 x = y = z = 0; in loadIdentity()
[all …]
/external/srec/config/en.us/audio/v139/
Dv139_024.nwv10z�r�q�p�p�q�r�x�y�r�q�u�q�m�r�p�q�x�t�l�p�t�s�s�s�v�z�|�{�v�u�y�y�{��{�w�x����|�������������~���…
11 ��_���i�X�V�����l�\�������j�K�r�����j�T�o�����n�C�m���f��&�����P���A�����}�l�j�z���i�������@�p���…
15 …���������������������2�����o���������-�4��qN�_WV��2�����@���z�[�5����������7���…
18 ���������>z�Tk�t<��[f���j���&�&���c���������I���e����i��������51)&V…
23z�b�J�?�C�=�H�z���������0�{��������3�/�-�T�`�q���P��H�R����������o���������������������������…
24 �;�����z�s���J������3�=�����d�K�:�<�����������������$���<�����f�8���+\!��g�Y����…
Dv139_040.nwv10z�x�y�}�~�w�x�w�q�u�v�w�t�m�x���{�t�v�z���}�{�~�u�x���x�x�~�������}�������������������������������…
14z�����o���������������������������������������������������������������{���������������������t�w��…
16 …W�O�S�X�M�M�V�J�:�,�'�-�*�-�7�:�?�<�8�;�.�)�7�7�=�U�U�L�Y�_�Y�`�l�s�}��|�z�x�z�������������~�����…
17 ����������������������������8�`�z�������������p�R�4������]���������1�#������J�…
19 ��}���K�������I�Q�q������D�_�������*�z���'�y�������-����'���n��������������+����y����…
25 …���������������� � �5�Y�z������W������� �E�Q�P�a���x�]�L�2������p�4�������N��������������������…
27z�����������������������0�l���������"Jz�����s?����e� �����a������O��������������…
Dv139_254.nwv10z�~���w�u�t�s�r�q�x�y�s�|���|�{�}��}�}����������������������������������������������������y����…
15z�"��_�����z�P���������D�R�������7��n�����r�O���������F�S�������2�&���������i����� ���M�`�������…
19 …f�U��������1�:�������������������R�k�����g���������0�O������������������)�z���f�m���e��o�������…
21z���&�3�YR%k��]�C���������n� ���������B����������W�B����-���o���-������3�q��������…
27 …��,���P���~��V�����^�{�������z�������x�������o� ��G���Z^����0@~�.���0h����� �������p�����…
31 …�������������u�a�x���R��������������������_�7����O�=�3�N�/�&�e�;���6�z�i�0��,�������^�����…
32 …��~�1�������������������������"����C�5� �'������5�O�6�6�F�:�E�{���{�����z�v���������M�RI…
Dv139_007.nwv10z�v�z�x�n�l�p�q�q�s�u�r�p�u�x�s�s�p�o�r�m�q�z�~���x�y�������������|���������~�~���}�{�������������…
11z�t�~���Y�P�q�w�u���u�V�m���q�3�q���j�I���h�m�����z���p�����������}�������������������������������…
15 …������/�,��$�:�&�"�<�I�F�3�5�R�D�G�k�g�`�Z�e�s�Q�]�~�W�W�w�I�E�u�_�[�~�z�{���y���������������…
16 …h�����q�����Y���z�U���d�*����� ������������w�F�>���~�~�p�z�����q��������������� ��������������…
17z�o�`�>��-�3���&�!�+�%��3�&�"�;�?�J�M�3�'�!��������&�E�_�T�R�d�_�j���������������������…
18 …��������q��������6�X������������M�����e���'���b�����<��5�V�z�������������������…
19z��&�4����]�!�1�7���%�I���]�p�������\������������`�����m�B�4���-�����������������…
Dv139_248.nwv10z�������������������������������������������������������������������������������������������������…
13z�����o�a���������g���������<�?�������y�s���������X�s�����v��%�������Q�>�������i�3�U�����K����p�…
15 �u�]���������h���������b�����j�����w�����������l�m�����z�����]�V���{�c����������i�q�����}�y�I�n���…
20 …��o�,��#�2�a���x�X�A�-��3������(�4�������>�L�k���E�g�)D������W�<�z�c���������V���^tE…
21 �������������������q�-����b���������D��������D�����l�W�E�U�z�����:�l� ���c�>�!���+��~�…
24 …��M�g����N���<�2������V�����k�N�k���������������r�4�1�w�����������������z�f�O�E��������������…
28z�|�o�j�v�w����������������;�k�z�o���������������������������i�?�.�+�'�"�� ����������������� ��…
31 ���+�0�A�P�]�f�Z�]�m�n�z�������������������������
32 ������������������#��Q����������p�3�������z�h�p�������i�b������������������;�`�k���������…
Dv139_021.nwv10z����������������~�������������������������������������������������������������������������������…
11z�w�k�u��y�x�q�k�u�y�s�v�w�o�s�{�x�t�y�}�|�t�m�u�~����������������������������������������������…
14 …m�[�4�(�����������������{�v���������������������������x�x�d�Q�!�������������z�N�V�J�.�.�<�e�������…
15 ��(�B�6�3�&���(�*�9�B�:�a���p�����t�����Q�_�m�@�O�i�_�y�|�i�������^�c��h�l�y�|��z�v�a�]�e�V�W�…
25 r����P���������5������8�����X���i�"���<������^�����������z�i��������_������������������…
31 ��Y�����/�&�����~�������K�������������z�l�����mf����1�\������������������b����������������_�…
33 …�g�:���������v�a�G�;�;�<�9�:�;�:�O�`�e�����������������.�;�p�����K���z�b�D55M��V…
36 …���������C�z�������!�j�u����������(�8�/����������~�S�(��������w�]�B�+� �!�"�!�.�C�T�`�u�…
/external/dropbear/libtomcrypt/src/ciphers/
Dxtea.c78 unsigned long y, z; in xtea_ecb_encrypt() local
86 LOAD32L(z, &pt[4]); in xtea_ecb_encrypt()
88 y = (y + ((((z<<4)^(z>>5)) + z) ^ skey->xtea.A[r])) & 0xFFFFFFFFUL; in xtea_ecb_encrypt()
89 z = (z + ((((y<<4)^(y>>5)) + y) ^ skey->xtea.B[r])) & 0xFFFFFFFFUL; in xtea_ecb_encrypt()
91 y = (y + ((((z<<4)^(z>>5)) + z) ^ skey->xtea.A[r+1])) & 0xFFFFFFFFUL; in xtea_ecb_encrypt()
92 z = (z + ((((y<<4)^(y>>5)) + y) ^ skey->xtea.B[r+1])) & 0xFFFFFFFFUL; in xtea_ecb_encrypt()
94 y = (y + ((((z<<4)^(z>>5)) + z) ^ skey->xtea.A[r+2])) & 0xFFFFFFFFUL; in xtea_ecb_encrypt()
95 z = (z + ((((y<<4)^(y>>5)) + y) ^ skey->xtea.B[r+2])) & 0xFFFFFFFFUL; in xtea_ecb_encrypt()
97 y = (y + ((((z<<4)^(z>>5)) + z) ^ skey->xtea.A[r+3])) & 0xFFFFFFFFUL; in xtea_ecb_encrypt()
98 z = (z + ((((y<<4)^(y>>5)) + y) ^ skey->xtea.B[r+3])) & 0xFFFFFFFFUL; in xtea_ecb_encrypt()
[all …]
Dcast5.c414 ulong32 x[4], z[4]; in _cast5_setup() local
443z[3] = x[3] ^ S5[GB(x, 0xD)] ^ S6[GB(x, 0xF)] ^ S7[GB(x, 0xC)] ^ S8[GB(x, 0xE)] ^ S7[GB(x, 0x8)]; in _cast5_setup()
444z[2] = x[1] ^ S5[GB(z, 0x0)] ^ S6[GB(z, 0x2)] ^ S7[GB(z, 0x1)] ^ S8[GB(z, 0x3)] ^ S8[GB(x, 0xA)]; in _cast5_setup()
445z[1] = x[0] ^ S5[GB(z, 0x7)] ^ S6[GB(z, 0x6)] ^ S7[GB(z, 0x5)] ^ S8[GB(z, 0x4)] ^ S5[GB(x, 0x9)]; in _cast5_setup()
446z[0] = x[2] ^ S5[GB(z, 0xA)] ^ S6[GB(z, 0x9)] ^ S7[GB(z, 0xb)] ^ S8[GB(z, 0x8)] ^ S6[GB(x, 0xB)]; in _cast5_setup()
447 …skey->cast5.K[i++] = S5[GB(z, 0x8)] ^ S6[GB(z, 0x9)] ^ S7[GB(z, 0x7)] ^ S8[GB(z, 0x6)] ^ S5[GB(z, … in _cast5_setup()
448 …skey->cast5.K[i++] = S5[GB(z, 0xA)] ^ S6[GB(z, 0xB)] ^ S7[GB(z, 0x5)] ^ S8[GB(z, 0x4)] ^ S6[GB(z, … in _cast5_setup()
449 …skey->cast5.K[i++] = S5[GB(z, 0xC)] ^ S6[GB(z, 0xd)] ^ S7[GB(z, 0x3)] ^ S8[GB(z, 0x2)] ^ S7[GB(z, … in _cast5_setup()
450 …skey->cast5.K[i++] = S5[GB(z, 0xE)] ^ S6[GB(z, 0xF)] ^ S7[GB(z, 0x1)] ^ S8[GB(z, 0x0)] ^ S8[GB(z, … in _cast5_setup()
452 … x[3] = z[1] ^ S5[GB(z, 0x5)] ^ S6[GB(z, 0x7)] ^ S7[GB(z, 0x4)] ^ S8[GB(z, 0x6)] ^ S7[GB(z, 0x0)]; in _cast5_setup()
[all …]
/external/v8/test/mjsunit/compiler/
Dassignment.js30 z = 2;
31 z += 4;
33 assertEquals(z, 6);
51 var z = 2;
52 z += 4;
54 assertEquals(z, 6);
73 z = 2;
74 z += 4;
76 assertEquals(z, 6);
95 var z = 3;
[all …]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
DBox.java87 public Box(float x, float y, float z) { in Box() argument
89 updateGeometry(Vector3f.ZERO, x, y, z); in Box()
104 public Box(Vector3f center, float x, float y, float z) { in Box() argument
106 updateGeometry(center, x, y, z); in Box()
165 …v[0].x, v[0].y, v[0].z, v[1].x, v[1].y, v[1].z, v[2].x, v[2].y, v[2].z, v[3].x, v[3].y, v[3].z, //… in duUpdateGeometryVertices()
166 …v[1].x, v[1].y, v[1].z, v[4].x, v[4].y, v[4].z, v[6].x, v[6].y, v[6].z, v[2].x, v[2].y, v[2].z, //… in duUpdateGeometryVertices()
167 …v[4].x, v[4].y, v[4].z, v[5].x, v[5].y, v[5].z, v[7].x, v[7].y, v[7].z, v[6].x, v[6].y, v[6].z, //… in duUpdateGeometryVertices()
168 …v[5].x, v[5].y, v[5].z, v[0].x, v[0].y, v[0].z, v[3].x, v[3].y, v[3].z, v[7].x, v[7].y, v[7].z, //… in duUpdateGeometryVertices()
169 …v[2].x, v[2].y, v[2].z, v[6].x, v[6].y, v[6].z, v[7].x, v[7].y, v[7].z, v[3].x, v[3].y, v[3].z, //… in duUpdateGeometryVertices()
170 …v[0].x, v[0].y, v[0].z, v[5].x, v[5].y, v[5].z, v[4].x, v[4].y, v[4].z, v[1].x, v[1].y, v[1].z //… in duUpdateGeometryVertices()
/external/v8/test/mjsunit/
Dstring-add.js62 var z = "3";
67 assertEquals("13", x + z, "xz");
72 assertEquals("23", y + z, "yz");
75 assertEquals("31", z + x, "zx");
76 assertEquals("32", z + y, "zy");
77 assertEquals("33", z + z, "zz");
78 assertEquals("34", z + w, "zw");
82 assertEquals("43", w + z, "wz");
85 (function(){x = 1; z = 3;})();
89 assertEquals(4, x + z, "x'z'");
[all …]
/external/clang/test/CodeGenCXX/
Dcondition.cpp30 void if_destruct(int z) { in if_destruct() argument
37 z = 18; in if_destruct()
41 z = 17; in if_destruct()
69 void switch_destruct(int z) { in switch_destruct() argument
77 z = 19; in switch_destruct()
82 z = 20; in switch_destruct()
92 z = 27; in switch_destruct()
99 void while_destruct(int z) { in while_destruct() argument
115 z = 21; in while_destruct()
124 z = 22; in while_destruct()
[all …]

12345678910>>...105