Lines Matching refs:a
80 #define FF(a, b, c, d, x, s, ac) { \ argument
81 (a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \
82 (a) = ROTATE_LEFT ((a), (s)); \
83 (a) += (b); \
85 #define GG(a, b, c, d, x, s, ac) { \ argument
86 (a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \
87 (a) = ROTATE_LEFT ((a), (s)); \
88 (a) += (b); \
90 #define HH(a, b, c, d, x, s, ac) { \ argument
91 (a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \
92 (a) = ROTATE_LEFT ((a), (s)); \
93 (a) += (b); \
95 #define II(a, b, c, d, x, s, ac) { \ argument
96 (a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \
97 (a) = ROTATE_LEFT ((a), (s)); \
98 (a) += (b); \
191 UINT4 a = state[0], b = state[1], c = state[2], d = state[3], x[16]; in MD5_Transform() local
196 FF (a, b, c, d, x[ 0], S11, 0xd76aa478); /* 1 */ in MD5_Transform()
197 FF (d, a, b, c, x[ 1], S12, 0xe8c7b756); /* 2 */ in MD5_Transform()
198 FF (c, d, a, b, x[ 2], S13, 0x242070db); /* 3 */ in MD5_Transform()
199 FF (b, c, d, a, x[ 3], S14, 0xc1bdceee); /* 4 */ in MD5_Transform()
200 FF (a, b, c, d, x[ 4], S11, 0xf57c0faf); /* 5 */ in MD5_Transform()
201 FF (d, a, b, c, x[ 5], S12, 0x4787c62a); /* 6 */ in MD5_Transform()
202 FF (c, d, a, b, x[ 6], S13, 0xa8304613); /* 7 */ in MD5_Transform()
203 FF (b, c, d, a, x[ 7], S14, 0xfd469501); /* 8 */ in MD5_Transform()
204 FF (a, b, c, d, x[ 8], S11, 0x698098d8); /* 9 */ in MD5_Transform()
205 FF (d, a, b, c, x[ 9], S12, 0x8b44f7af); /* 10 */ in MD5_Transform()
206 FF (c, d, a, b, x[10], S13, 0xffff5bb1); /* 11 */ in MD5_Transform()
207 FF (b, c, d, a, x[11], S14, 0x895cd7be); /* 12 */ in MD5_Transform()
208 FF (a, b, c, d, x[12], S11, 0x6b901122); /* 13 */ in MD5_Transform()
209 FF (d, a, b, c, x[13], S12, 0xfd987193); /* 14 */ in MD5_Transform()
210 FF (c, d, a, b, x[14], S13, 0xa679438e); /* 15 */ in MD5_Transform()
211 FF (b, c, d, a, x[15], S14, 0x49b40821); /* 16 */ in MD5_Transform()
214 GG (a, b, c, d, x[ 1], S21, 0xf61e2562); /* 17 */ in MD5_Transform()
215 GG (d, a, b, c, x[ 6], S22, 0xc040b340); /* 18 */ in MD5_Transform()
216 GG (c, d, a, b, x[11], S23, 0x265e5a51); /* 19 */ in MD5_Transform()
217 GG (b, c, d, a, x[ 0], S24, 0xe9b6c7aa); /* 20 */ in MD5_Transform()
218 GG (a, b, c, d, x[ 5], S21, 0xd62f105d); /* 21 */ in MD5_Transform()
219 GG (d, a, b, c, x[10], S22, 0x2441453); /* 22 */ in MD5_Transform()
220 GG (c, d, a, b, x[15], S23, 0xd8a1e681); /* 23 */ in MD5_Transform()
221 GG (b, c, d, a, x[ 4], S24, 0xe7d3fbc8); /* 24 */ in MD5_Transform()
222 GG (a, b, c, d, x[ 9], S21, 0x21e1cde6); /* 25 */ in MD5_Transform()
223 GG (d, a, b, c, x[14], S22, 0xc33707d6); /* 26 */ in MD5_Transform()
224 GG (c, d, a, b, x[ 3], S23, 0xf4d50d87); /* 27 */ in MD5_Transform()
225 GG (b, c, d, a, x[ 8], S24, 0x455a14ed); /* 28 */ in MD5_Transform()
226 GG (a, b, c, d, x[13], S21, 0xa9e3e905); /* 29 */ in MD5_Transform()
227 GG (d, a, b, c, x[ 2], S22, 0xfcefa3f8); /* 30 */ in MD5_Transform()
228 GG (c, d, a, b, x[ 7], S23, 0x676f02d9); /* 31 */ in MD5_Transform()
229 GG (b, c, d, a, x[12], S24, 0x8d2a4c8a); /* 32 */ in MD5_Transform()
232 HH (a, b, c, d, x[ 5], S31, 0xfffa3942); /* 33 */ in MD5_Transform()
233 HH (d, a, b, c, x[ 8], S32, 0x8771f681); /* 34 */ in MD5_Transform()
234 HH (c, d, a, b, x[11], S33, 0x6d9d6122); /* 35 */ in MD5_Transform()
235 HH (b, c, d, a, x[14], S34, 0xfde5380c); /* 36 */ in MD5_Transform()
236 HH (a, b, c, d, x[ 1], S31, 0xa4beea44); /* 37 */ in MD5_Transform()
237 HH (d, a, b, c, x[ 4], S32, 0x4bdecfa9); /* 38 */ in MD5_Transform()
238 HH (c, d, a, b, x[ 7], S33, 0xf6bb4b60); /* 39 */ in MD5_Transform()
239 HH (b, c, d, a, x[10], S34, 0xbebfbc70); /* 40 */ in MD5_Transform()
240 HH (a, b, c, d, x[13], S31, 0x289b7ec6); /* 41 */ in MD5_Transform()
241 HH (d, a, b, c, x[ 0], S32, 0xeaa127fa); /* 42 */ in MD5_Transform()
242 HH (c, d, a, b, x[ 3], S33, 0xd4ef3085); /* 43 */ in MD5_Transform()
243 HH (b, c, d, a, x[ 6], S34, 0x4881d05); /* 44 */ in MD5_Transform()
244 HH (a, b, c, d, x[ 9], S31, 0xd9d4d039); /* 45 */ in MD5_Transform()
245 HH (d, a, b, c, x[12], S32, 0xe6db99e5); /* 46 */ in MD5_Transform()
246 HH (c, d, a, b, x[15], S33, 0x1fa27cf8); /* 47 */ in MD5_Transform()
247 HH (b, c, d, a, x[ 2], S34, 0xc4ac5665); /* 48 */ in MD5_Transform()
250 II (a, b, c, d, x[ 0], S41, 0xf4292244); /* 49 */ in MD5_Transform()
251 II (d, a, b, c, x[ 7], S42, 0x432aff97); /* 50 */ in MD5_Transform()
252 II (c, d, a, b, x[14], S43, 0xab9423a7); /* 51 */ in MD5_Transform()
253 II (b, c, d, a, x[ 5], S44, 0xfc93a039); /* 52 */ in MD5_Transform()
254 II (a, b, c, d, x[12], S41, 0x655b59c3); /* 53 */ in MD5_Transform()
255 II (d, a, b, c, x[ 3], S42, 0x8f0ccc92); /* 54 */ in MD5_Transform()
256 II (c, d, a, b, x[10], S43, 0xffeff47d); /* 55 */ in MD5_Transform()
257 II (b, c, d, a, x[ 1], S44, 0x85845dd1); /* 56 */ in MD5_Transform()
258 II (a, b, c, d, x[ 8], S41, 0x6fa87e4f); /* 57 */ in MD5_Transform()
259 II (d, a, b, c, x[15], S42, 0xfe2ce6e0); /* 58 */ in MD5_Transform()
260 II (c, d, a, b, x[ 6], S43, 0xa3014314); /* 59 */ in MD5_Transform()
261 II (b, c, d, a, x[13], S44, 0x4e0811a1); /* 60 */ in MD5_Transform()
262 II (a, b, c, d, x[ 4], S41, 0xf7537e82); /* 61 */ in MD5_Transform()
263 II (d, a, b, c, x[11], S42, 0xbd3af235); /* 62 */ in MD5_Transform()
264 II (c, d, a, b, x[ 2], S43, 0x2ad7d2bb); /* 63 */ in MD5_Transform()
265 II (b, c, d, a, x[ 9], S44, 0xeb86d391); /* 64 */ in MD5_Transform()
267 state[0] += a; in MD5_Transform()