Lines Matching +full:30 +full:w
69 #define W(n) (ctxt->m.b32[(n)]) macro
114 ctxt->m.b8[28] = tctxt.m.b8[31]; ctxt->m.b8[29] = tctxt.m.b8[30]; in sha1_step()
115 ctxt->m.b8[30] = tctxt.m.b8[29]; ctxt->m.b8[31] = tctxt.m.b8[28]; 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()
142 e = d; d = c; c = S(30, b); b = a; a = tmp; 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()
148 e = d; d = c; c = S(30, b); b = a; a = tmp; 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()
154 e = d; d = c; c = S(30, b); b = a; a = tmp; 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()
160 e = d; d = c; c = S(30, b); b = a; a = tmp; in sha1_step()