Lines Matching refs:a

181 #define FF(a, b, c, d, e, w) { \  argument
183 (e) += ROTATE_LEFT ((a), 5); \
186 #define GG(a, b, c, d, e, w) { \ argument
188 (e) += ROTATE_LEFT ((a), 5); \
191 #define HH(a, b, c, d, e, w) { \ argument
193 (e) += ROTATE_LEFT ((a), 5); \
196 #define II(a, b, c, d, e, w) { \ argument
198 (e) += ROTATE_LEFT ((a), 5); \
224 php_hash_uint32 a = state[0], b = state[1], c = state[2]; in SHA1Transform() local
230 FF(a, b, c, d, e, x[0]); /* 1 */ in SHA1Transform()
231 FF(e, a, b, c, d, x[1]); /* 2 */ in SHA1Transform()
232 FF(d, e, a, b, c, x[2]); /* 3 */ in SHA1Transform()
233 FF(c, d, e, a, b, x[3]); /* 4 */ in SHA1Transform()
234 FF(b, c, d, e, a, x[4]); /* 5 */ in SHA1Transform()
235 FF(a, b, c, d, e, x[5]); /* 6 */ in SHA1Transform()
236 FF(e, a, b, c, d, x[6]); /* 7 */ in SHA1Transform()
237 FF(d, e, a, b, c, x[7]); /* 8 */ in SHA1Transform()
238 FF(c, d, e, a, b, x[8]); /* 9 */ in SHA1Transform()
239 FF(b, c, d, e, a, x[9]); /* 10 */ in SHA1Transform()
240 FF(a, b, c, d, e, x[10]); /* 11 */ in SHA1Transform()
241 FF(e, a, b, c, d, x[11]); /* 12 */ in SHA1Transform()
242 FF(d, e, a, b, c, x[12]); /* 13 */ in SHA1Transform()
243 FF(c, d, e, a, b, x[13]); /* 14 */ in SHA1Transform()
244 FF(b, c, d, e, a, x[14]); /* 15 */ in SHA1Transform()
245 FF(a, b, c, d, e, x[15]); /* 16 */ in SHA1Transform()
246 FF(e, a, b, c, d, W(16)); /* 17 */ in SHA1Transform()
247 FF(d, e, a, b, c, W(17)); /* 18 */ in SHA1Transform()
248 FF(c, d, e, a, b, W(18)); /* 19 */ in SHA1Transform()
249 FF(b, c, d, e, a, W(19)); /* 20 */ in SHA1Transform()
252 GG(a, b, c, d, e, W(20)); /* 21 */ in SHA1Transform()
253 GG(e, a, b, c, d, W(21)); /* 22 */ in SHA1Transform()
254 GG(d, e, a, b, c, W(22)); /* 23 */ in SHA1Transform()
255 GG(c, d, e, a, b, W(23)); /* 24 */ in SHA1Transform()
256 GG(b, c, d, e, a, W(24)); /* 25 */ in SHA1Transform()
257 GG(a, b, c, d, e, W(25)); /* 26 */ in SHA1Transform()
258 GG(e, a, b, c, d, W(26)); /* 27 */ in SHA1Transform()
259 GG(d, e, a, b, c, W(27)); /* 28 */ in SHA1Transform()
260 GG(c, d, e, a, b, W(28)); /* 29 */ in SHA1Transform()
261 GG(b, c, d, e, a, W(29)); /* 30 */ in SHA1Transform()
262 GG(a, b, c, d, e, W(30)); /* 31 */ in SHA1Transform()
263 GG(e, a, b, c, d, W(31)); /* 32 */ in SHA1Transform()
264 GG(d, e, a, b, c, W(32)); /* 33 */ in SHA1Transform()
265 GG(c, d, e, a, b, W(33)); /* 34 */ in SHA1Transform()
266 GG(b, c, d, e, a, W(34)); /* 35 */ in SHA1Transform()
267 GG(a, b, c, d, e, W(35)); /* 36 */ in SHA1Transform()
268 GG(e, a, b, c, d, W(36)); /* 37 */ in SHA1Transform()
269 GG(d, e, a, b, c, W(37)); /* 38 */ in SHA1Transform()
270 GG(c, d, e, a, b, W(38)); /* 39 */ in SHA1Transform()
271 GG(b, c, d, e, a, W(39)); /* 40 */ in SHA1Transform()
274 HH(a, b, c, d, e, W(40)); /* 41 */ in SHA1Transform()
275 HH(e, a, b, c, d, W(41)); /* 42 */ in SHA1Transform()
276 HH(d, e, a, b, c, W(42)); /* 43 */ in SHA1Transform()
277 HH(c, d, e, a, b, W(43)); /* 44 */ in SHA1Transform()
278 HH(b, c, d, e, a, W(44)); /* 45 */ in SHA1Transform()
279 HH(a, b, c, d, e, W(45)); /* 46 */ in SHA1Transform()
280 HH(e, a, b, c, d, W(46)); /* 47 */ in SHA1Transform()
281 HH(d, e, a, b, c, W(47)); /* 48 */ in SHA1Transform()
282 HH(c, d, e, a, b, W(48)); /* 49 */ in SHA1Transform()
283 HH(b, c, d, e, a, W(49)); /* 50 */ in SHA1Transform()
284 HH(a, b, c, d, e, W(50)); /* 51 */ in SHA1Transform()
285 HH(e, a, b, c, d, W(51)); /* 52 */ in SHA1Transform()
286 HH(d, e, a, b, c, W(52)); /* 53 */ in SHA1Transform()
287 HH(c, d, e, a, b, W(53)); /* 54 */ in SHA1Transform()
288 HH(b, c, d, e, a, W(54)); /* 55 */ in SHA1Transform()
289 HH(a, b, c, d, e, W(55)); /* 56 */ in SHA1Transform()
290 HH(e, a, b, c, d, W(56)); /* 57 */ in SHA1Transform()
291 HH(d, e, a, b, c, W(57)); /* 58 */ in SHA1Transform()
292 HH(c, d, e, a, b, W(58)); /* 59 */ in SHA1Transform()
293 HH(b, c, d, e, a, W(59)); /* 60 */ in SHA1Transform()
296 II(a, b, c, d, e, W(60)); /* 61 */ in SHA1Transform()
297 II(e, a, b, c, d, W(61)); /* 62 */ in SHA1Transform()
298 II(d, e, a, b, c, W(62)); /* 63 */ in SHA1Transform()
299 II(c, d, e, a, b, W(63)); /* 64 */ in SHA1Transform()
300 II(b, c, d, e, a, W(64)); /* 65 */ in SHA1Transform()
301 II(a, b, c, d, e, W(65)); /* 66 */ in SHA1Transform()
302 II(e, a, b, c, d, W(66)); /* 67 */ in SHA1Transform()
303 II(d, e, a, b, c, W(67)); /* 68 */ in SHA1Transform()
304 II(c, d, e, a, b, W(68)); /* 69 */ in SHA1Transform()
305 II(b, c, d, e, a, W(69)); /* 70 */ in SHA1Transform()
306 II(a, b, c, d, e, W(70)); /* 71 */ in SHA1Transform()
307 II(e, a, b, c, d, W(71)); /* 72 */ in SHA1Transform()
308 II(d, e, a, b, c, W(72)); /* 73 */ in SHA1Transform()
309 II(c, d, e, a, b, W(73)); /* 74 */ in SHA1Transform()
310 II(b, c, d, e, a, W(74)); /* 75 */ in SHA1Transform()
311 II(a, b, c, d, e, W(75)); /* 76 */ in SHA1Transform()
312 II(e, a, b, c, d, W(76)); /* 77 */ in SHA1Transform()
313 II(d, e, a, b, c, W(77)); /* 78 */ in SHA1Transform()
314 II(c, d, e, a, b, W(78)); /* 79 */ in SHA1Transform()
315 II(b, c, d, e, a, W(79)); /* 80 */ in SHA1Transform()
317 state[0] += a; in SHA1Transform()
482 php_hash_uint32 a = state[0], b = state[1], c = state[2], d = state[3]; in SHA256Transform() local
499 T2 = SHA256_F2(a) + SHA256_F1(a,b,c); in SHA256Transform()
501 d = c; c = b; b = a; a = T1 + T2; in SHA256Transform()
504 state[0] += a; in SHA256Transform()
792 php_hash_uint64 a = state[0], b = state[1], c = state[2], d = state[3]; in SHA512Transform() local
809 T2 = SHA512_F2(a) + SHA512_F1(a,b,c); in SHA512Transform()
811 d = c; c = b; b = a; a = T1 + T2; in SHA512Transform()
814 state[0] += a; in SHA512Transform()