Lines Matching +full:20 +full:w
57 #define K(t) _K[(t) / 20]
69 #define W(n) (ctxt->m.b32[(n)]) macro
110 ctxt->m.b8[20] = tctxt.m.b8[23]; ctxt->m.b8[21] = tctxt.m.b8[22]; in sha1_step()
111 ctxt->m.b8[22] = tctxt.m.b8[21]; ctxt->m.b8[23] = tctxt.m.b8[20]; in sha1_step()
136 for (t = 0; t < 20; t++) { in sha1_step()
139 W(s) = S(1, W((s+13) & 0x0f) ^ W((s+8) & 0x0f) ^ W((s+2) & 0x0f) ^ W(s)); in sha1_step()
141 tmp = S(5, a) + F0(b, c, d) + e + W(s) + K(t); in sha1_step()
144 for (t = 20; t < 40; t++) { in sha1_step()
146 W(s) = S(1, W((s+13) & 0x0f) ^ W((s+8) & 0x0f) ^ W((s+2) & 0x0f) ^ W(s)); in sha1_step()
147 tmp = S(5, a) + F1(b, c, d) + e + W(s) + K(t); in sha1_step()
152 W(s) = S(1, W((s+13) & 0x0f) ^ W((s+8) & 0x0f) ^ W((s+2) & 0x0f) ^ W(s)); in sha1_step()
153 tmp = S(5, a) + F2(b, c, d) + e + W(s) + K(t); in sha1_step()
158 W(s) = S(1, W((s+13) & 0x0f) ^ W((s+8) & 0x0f) ^ W((s+2) & 0x0f) ^ W(s)); in sha1_step()
159 tmp = S(5, a) + F3(b, c, d) + e + W(s) + K(t); in sha1_step()