Searched refs:t2 (Results 1 – 3 of 3) sorted by relevance
/crypto/ |
D | sha512_generic.c | 101 u64 a, b, c, d, e, f, g, h, t1, t2; in sha512_transform() local 127 t2 = e0(a) + Maj(a,b,c); d+=t1; h=t1+t2; in sha512_transform() 129 t2 = e0(h) + Maj(h,a,b); c+=t1; g=t1+t2; in sha512_transform() 131 t2 = e0(g) + Maj(g,h,a); b+=t1; f=t1+t2; in sha512_transform() 133 t2 = e0(f) + Maj(f,g,h); a+=t1; e=t1+t2; in sha512_transform() 135 t2 = e0(e) + Maj(e,f,g); h+=t1; d=t1+t2; in sha512_transform() 137 t2 = e0(d) + Maj(d,e,f); g+=t1; c=t1+t2; in sha512_transform() 139 t2 = e0(c) + Maj(c,d,e); f+=t1; b=t1+t2; in sha512_transform() 141 t2 = e0(b) + Maj(b,c,d); e+=t1; a=t1+t2; in sha512_transform() 148 a = b = c = d = e = f = g = h = t1 = t2 = 0; in sha512_transform()
|
D | vmac.c | 255 u64 t1, t2, m1, m2, t; \ 260 t2 = pe64_to_cpup(mp+i+1) + kp[i+1]; \ 261 m2 = MUL32(t1 >> 32, t2); \ 262 m1 = MUL32(t1, t2 >> 32); \ 263 ADD128(rh, rl, MUL32(t1 >> 32, t2 >> 32), \ 264 MUL32(t1, t2)); \ 287 u32 t2; in poly_step_func() local 310 t2 = (u32)(p); in poly_step_func() 319 *(u64 *)(alo) = (p << 32) | t2; in poly_step_func()
|
D | camellia_generic.c | 819 #define CAMELLIA_FLS(ll, lr, rl, rr, kll, klr, krl, krr, t0, t1, t2, t3) ({ \ argument 821 t2 = krr; \ 823 t2 |= rr; \ 824 rl ^= t2; \
|