Home
last modified time | relevance | path

Searched refs:t0 (Results 1 – 4 of 4) sorted by relevance

/lib/crypto/
Dpoly1305-donna64.c18 u64 t0, t1; in poly1305_core_setkey() local
21 t0 = get_unaligned_le64(&raw_key[0]); in poly1305_core_setkey()
24 key->key.r64[0] = t0 & 0xffc0fffffffULL; in poly1305_core_setkey()
25 key->key.r64[1] = ((t0 >> 44) | (t1 << 20)) & 0xfffffc0ffffULL; in poly1305_core_setkey()
63 u64 t0, t1; in poly1305_core_blocks() local
66 t0 = get_unaligned_le64(&input[0]); in poly1305_core_blocks()
69 h0 += t0 & 0xfffffffffffULL; in poly1305_core_blocks()
70 h1 += ((t0 >> 44) | (t1 << 20)) & 0xfffffffffffULL; in poly1305_core_blocks()
119 u64 t0, t1; in poly1305_core_emit() local
166 t0 = ((u64)nonce[1] << 32) | nonce[0]; in poly1305_core_emit()
[all …]
Dcurve25519-hacl64.c308 u64 *t0; in crecip_crecip() local
330 t0 = buf + 5; in crecip_crecip()
333 fmul_fmul(c, t0, b); in crecip_crecip()
334 fsquare_fsquare_times(t0, c, 100); in crecip_crecip()
335 fmul_fmul(t0, t0, c); in crecip_crecip()
336 fsquare_fsquare_times_inplace(t0, 50); in crecip_crecip()
337 fmul_fmul(t0, t0, b); in crecip_crecip()
338 fsquare_fsquare_times_inplace(t0, 5); in crecip_crecip()
339 fmul_fmul(out, t0, a); in crecip_crecip()
629 u64 t0 = input[0]; in format_fcontract_first_carry_pass() local
[all …]
Dcurve25519-fiat32.c562 fe t0; in fe_loose_invert() local
568 fe_sq_tl(&t0, z); in fe_loose_invert()
569 fe_sq_tt(&t1, &t0); in fe_loose_invert()
573 fe_mul_ttt(&t0, &t0, &t1); in fe_loose_invert()
574 fe_sq_tt(&t2, &t0); in fe_loose_invert()
607 fe_mul_ttt(out, &t1, &t0); in fe_loose_invert()
/lib/
Dcrc32.c61 # define DO_CRC(x) crc = t0[(crc ^ (x)) & 255] ^ (crc >> 8)
63 t1[(q >> 16) & 255] ^ t0[(q >> 24) & 255])
67 # define DO_CRC(x) crc = t0[((crc >> 24) ^ (x)) & 255] ^ (crc << 8)
68 # define DO_CRC4 (t0[(q) & 255] ^ t1[(q >> 8) & 255] ^ \
78 const u32 *t0=tab[0], *t1=tab[1], *t2=tab[2], *t3=tab[3]; local