Lines Matching refs:b

86 #define	FF(a, b, c, d, x, s) { \  argument
87 (a) += F((b), (c), (d)) + (x); \
90 #define GG(a, b, c, d, x, s) { \ argument
91 (a) += G((b), (c), (d)) + (x) + (uint32_t)0x5a827999; \
94 #define HH(a, b, c, d, x, s) { \ argument
95 (a) += H((b), (c), (d)) + (x) + (uint32_t)0x6ed9eba1; \
193 uint32_t a = state[0], b = state[1], c = state[2], d = state[3], x[16]; in MD4Transform() local
199 FF(a, b, c, d, x[ 0], S11); /* 1 */ in MD4Transform()
200 FF(d, a, b, c, x[ 1], S12); /* 2 */ in MD4Transform()
201 FF(c, d, a, b, x[ 2], S13); /* 3 */ in MD4Transform()
202 FF(b, c, d, a, x[ 3], S14); /* 4 */ in MD4Transform()
203 FF(a, b, c, d, x[ 4], S11); /* 5 */ in MD4Transform()
204 FF(d, a, b, c, x[ 5], S12); /* 6 */ in MD4Transform()
205 FF(c, d, a, b, x[ 6], S13); /* 7 */ in MD4Transform()
206 FF(b, c, d, a, x[ 7], S14); /* 8 */ in MD4Transform()
207 FF(a, b, c, d, x[ 8], S11); /* 9 */ in MD4Transform()
208 FF(d, a, b, c, x[ 9], S12); /* 10 */ in MD4Transform()
209 FF(c, d, a, b, x[10], S13); /* 11 */ in MD4Transform()
210 FF(b, c, d, a, x[11], S14); /* 12 */ in MD4Transform()
211 FF(a, b, c, d, x[12], S11); /* 13 */ in MD4Transform()
212 FF(d, a, b, c, x[13], S12); /* 14 */ in MD4Transform()
213 FF(c, d, a, b, x[14], S13); /* 15 */ in MD4Transform()
214 FF(b, c, d, a, x[15], S14); /* 16 */ in MD4Transform()
217 GG(a, b, c, d, x[ 0], S21); /* 17 */ in MD4Transform()
218 GG(d, a, b, c, x[ 4], S22); /* 18 */ in MD4Transform()
219 GG(c, d, a, b, x[ 8], S23); /* 19 */ in MD4Transform()
220 GG(b, c, d, a, x[12], S24); /* 20 */ in MD4Transform()
221 GG(a, b, c, d, x[ 1], S21); /* 21 */ in MD4Transform()
222 GG(d, a, b, c, x[ 5], S22); /* 22 */ in MD4Transform()
223 GG(c, d, a, b, x[ 9], S23); /* 23 */ in MD4Transform()
224 GG(b, c, d, a, x[13], S24); /* 24 */ in MD4Transform()
225 GG(a, b, c, d, x[ 2], S21); /* 25 */ in MD4Transform()
226 GG(d, a, b, c, x[ 6], S22); /* 26 */ in MD4Transform()
227 GG(c, d, a, b, x[10], S23); /* 27 */ in MD4Transform()
228 GG(b, c, d, a, x[14], S24); /* 28 */ in MD4Transform()
229 GG(a, b, c, d, x[ 3], S21); /* 29 */ in MD4Transform()
230 GG(d, a, b, c, x[ 7], S22); /* 30 */ in MD4Transform()
231 GG(c, d, a, b, x[11], S23); /* 31 */ in MD4Transform()
232 GG(b, c, d, a, x[15], S24); /* 32 */ in MD4Transform()
236 HH(a, b, c, d, x[ 0], S31); /* 33 */ in MD4Transform()
237 HH(d, a, b, c, x[ 8], S32); /* 34 */ in MD4Transform()
238 HH(c, d, a, b, x[ 4], S33); /* 35 */ in MD4Transform()
239 HH(b, c, d, a, x[12], S34); /* 36 */ in MD4Transform()
240 HH(a, b, c, d, x[ 2], S31); /* 37 */ in MD4Transform()
241 HH(d, a, b, c, x[10], S32); /* 38 */ in MD4Transform()
242 HH(c, d, a, b, x[ 6], S33); /* 39 */ in MD4Transform()
243 HH(b, c, d, a, x[14], S34); /* 40 */ in MD4Transform()
244 HH(a, b, c, d, x[ 1], S31); /* 41 */ in MD4Transform()
245 HH(d, a, b, c, x[ 9], S32); /* 42 */ in MD4Transform()
246 HH(c, d, a, b, x[ 5], S33); /* 43 */ in MD4Transform()
247 HH(b, c, d, a, x[13], S34); /* 44 */ in MD4Transform()
248 HH(a, b, c, d, x[ 3], S31); /* 45 */ in MD4Transform()
249 HH(d, a, b, c, x[11], S32); /* 46 */ in MD4Transform()
250 HH(c, d, a, b, x[ 7], S33); /* 47 */ in MD4Transform()
251 HH(b, c, d, a, x[15], S34); /* 48 */ in MD4Transform()
254 state[1] += b; in MD4Transform()