Lines Matching refs:acc0
70 uint32_t acc0, acc1, acc2, acc3, acc4; in poly1305_process() local
85 acc0 = ctx->acc[0]; in poly1305_process()
100 d0 += (uint64_t) acc0; in poly1305_process()
104 acc0 = (uint32_t) d0; in poly1305_process()
111 d0 = mul64(acc0, r0) + in poly1305_process()
115 d1 = mul64(acc0, r1) + in poly1305_process()
120 d2 = mul64(acc0, r2) + in poly1305_process()
125 d3 = mul64(acc0, r3) + in poly1305_process()
136 acc0 = (uint32_t) d0; in poly1305_process()
142 d0 = (uint64_t) acc0 + (acc4 >> 2) + (acc4 & 0xFFFFFFFCU); in poly1305_process()
144 acc0 = (uint32_t) d0; in poly1305_process()
157 ctx->acc[0] = acc0; in poly1305_process()
176 uint32_t acc0, acc1, acc2, acc3, acc4; in poly1305_compute_mac() local
180 acc0 = ctx->acc[0]; in poly1305_compute_mac()
192 d = ((uint64_t) acc0 + 5U); in poly1305_compute_mac()
207 acc0 = (acc0 & mask_inv) | (g0 & mask); in poly1305_compute_mac()
213 d = (uint64_t) acc0 + ctx->s[0]; in poly1305_compute_mac()
214 acc0 = (uint32_t) d; in poly1305_compute_mac()
222 MBEDTLS_PUT_UINT32_LE(acc0, mac, 0); in poly1305_compute_mac()