Home
last modified time | relevance | path

Searched refs:t2 (Results 1 – 3 of 3) sorted by relevance

/lib/crypto/
Dsha256.c48 u32 a, b, c, d, e, f, g, h, t1, t2; in sha256_transform() local
66 t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2; in sha256_transform()
68 t2 = e0(h) + Maj(h, a, b); c += t1; g = t1 + t2; in sha256_transform()
70 t2 = e0(g) + Maj(g, h, a); b += t1; f = t1 + t2; in sha256_transform()
72 t2 = e0(f) + Maj(f, g, h); a += t1; e = t1 + t2; in sha256_transform()
74 t2 = e0(e) + Maj(e, f, g); h += t1; d = t1 + t2; in sha256_transform()
76 t2 = e0(d) + Maj(d, e, f); g += t1; c = t1 + t2; in sha256_transform()
78 t2 = e0(c) + Maj(c, d, e); f += t1; b = t1 + t2; in sha256_transform()
80 t2 = e0(b) + Maj(b, c, d); e += t1; a = t1 + t2; in sha256_transform()
83 t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2; in sha256_transform()
[all …]
/lib/
Dlocking-selftest.c53 static struct ww_acquire_ctx t, t2; variable
1118 I_WW(t); I_WW(t2); I_WW(o.base); I_WW(o2.base); I_WW(o3.base);
1124 memset(&t, 0, sizeof(t)); memset(&t2, 0, sizeof(t2));
1328 t2 = t; in ww_test_fail_acquire()
1329 t2.stamp++; in ww_test_fail_acquire()
1330 ret = WWL(&o, &t2); in ww_test_fail_acquire()
1406 WWAI(&t2); in ww_test_two_contexts()
1468 o.ctx = &t2; in ww_test_object_lock_stale_context()
1477 o2.ctx = &t2; in ww_test_edeadlk_normal()
1481 t2 = t; in ww_test_edeadlk_normal()
[all …]
Dcrc32.c62 # define DO_CRC4 (t3[(q) & 255] ^ t2[(q >> 8) & 255] ^ \
69 t2[(q >> 16) & 255] ^ t3[(q >> 24) & 255])
78 const u32 *t0=tab[0], *t1=tab[1], *t2=tab[2], *t3=tab[3]; local