Lines Matching refs:d

79 #define FF(a, b, c, d, x, s) { \  argument
80 (a) += F ((b), (c), (d)) + (x); \
83 #define GG(a, b, c, d, x, s) { \ argument
84 (a) += G ((b), (c), (d)) + (x) + (UINT4)0x5a827999; \
87 #define HH(a, b, c, d, x, s) { \ argument
88 (a) += H ((b), (c), (d)) + (x) + (UINT4)0x6ed9eba1; \
189 UINT4 a = state[0], b = state[1], c = state[2], d = state[3], x[16]; in MD4Transform() local
194 FF (a, b, c, d, x[ 0], S11); /* 1 */ in MD4Transform()
195 FF (d, a, b, c, x[ 1], S12); /* 2 */ in MD4Transform()
196 FF (c, d, a, b, x[ 2], S13); /* 3 */ in MD4Transform()
197 FF (b, c, d, a, x[ 3], S14); /* 4 */ in MD4Transform()
198 FF (a, b, c, d, x[ 4], S11); /* 5 */ in MD4Transform()
199 FF (d, a, b, c, x[ 5], S12); /* 6 */ in MD4Transform()
200 FF (c, d, a, b, x[ 6], S13); /* 7 */ in MD4Transform()
201 FF (b, c, d, a, x[ 7], S14); /* 8 */ in MD4Transform()
202 FF (a, b, c, d, x[ 8], S11); /* 9 */ in MD4Transform()
203 FF (d, a, b, c, x[ 9], S12); /* 10 */ in MD4Transform()
204 FF (c, d, a, b, x[10], S13); /* 11 */ in MD4Transform()
205 FF (b, c, d, a, x[11], S14); /* 12 */ in MD4Transform()
206 FF (a, b, c, d, x[12], S11); /* 13 */ in MD4Transform()
207 FF (d, a, b, c, x[13], S12); /* 14 */ in MD4Transform()
208 FF (c, d, a, b, x[14], S13); /* 15 */ in MD4Transform()
209 FF (b, c, d, a, x[15], S14); /* 16 */ in MD4Transform()
212 GG (a, b, c, d, x[ 0], S21); /* 17 */ in MD4Transform()
213 GG (d, a, b, c, x[ 4], S22); /* 18 */ in MD4Transform()
214 GG (c, d, a, b, x[ 8], S23); /* 19 */ in MD4Transform()
215 GG (b, c, d, a, x[12], S24); /* 20 */ in MD4Transform()
216 GG (a, b, c, d, x[ 1], S21); /* 21 */ in MD4Transform()
217 GG (d, a, b, c, x[ 5], S22); /* 22 */ in MD4Transform()
218 GG (c, d, a, b, x[ 9], S23); /* 23 */ in MD4Transform()
219 GG (b, c, d, a, x[13], S24); /* 24 */ in MD4Transform()
220 GG (a, b, c, d, x[ 2], S21); /* 25 */ in MD4Transform()
221 GG (d, a, b, c, x[ 6], S22); /* 26 */ in MD4Transform()
222 GG (c, d, a, b, x[10], S23); /* 27 */ in MD4Transform()
223 GG (b, c, d, a, x[14], S24); /* 28 */ in MD4Transform()
224 GG (a, b, c, d, x[ 3], S21); /* 29 */ in MD4Transform()
225 GG (d, a, b, c, x[ 7], S22); /* 30 */ in MD4Transform()
226 GG (c, d, a, b, x[11], S23); /* 31 */ in MD4Transform()
227 GG (b, c, d, a, x[15], S24); /* 32 */ in MD4Transform()
230 HH (a, b, c, d, x[ 0], S31); /* 33 */ in MD4Transform()
231 HH (d, a, b, c, x[ 8], S32); /* 34 */ in MD4Transform()
232 HH (c, d, a, b, x[ 4], S33); /* 35 */ in MD4Transform()
233 HH (b, c, d, a, x[12], S34); /* 36 */ in MD4Transform()
234 HH (a, b, c, d, x[ 2], S31); /* 37 */ in MD4Transform()
235 HH (d, a, b, c, x[10], S32); /* 38 */ in MD4Transform()
236 HH (c, d, a, b, x[ 6], S33); /* 39 */ in MD4Transform()
237 HH (b, c, d, a, x[14], S34); /* 40 */ in MD4Transform()
238 HH (a, b, c, d, x[ 1], S31); /* 41 */ in MD4Transform()
239 HH (d, a, b, c, x[ 9], S32); /* 42 */ in MD4Transform()
240 HH (c, d, a, b, x[ 5], S33); /* 43 */ in MD4Transform()
241 HH (b, c, d, a, x[13], S34); /* 44 */ in MD4Transform()
242 HH (a, b, c, d, x[ 3], S31); /* 45 */ in MD4Transform()
243 HH (d, a, b, c, x[11], S32); /* 46 */ in MD4Transform()
244 HH (c, d, a, b, x[ 7], S33); /* 47 */ in MD4Transform()
245 HH (b, c, d, a, x[15], S34); /* 48 */ in MD4Transform()
250 state[3] += d; in MD4Transform()