Lines Matching refs:acc1
100 uint32_t acc0, acc1, acc2, acc3, acc4; in poly1305_process() local
116 acc1 = ctx->acc[1]; in poly1305_process()
132 d1 += (uint64_t) acc1 + ( d0 >> 32U ); in poly1305_process()
136 acc1 = (uint32_t) d1; in poly1305_process()
143 mul64( acc1, rs3 ) + in poly1305_process()
147 mul64( acc1, r0 ) + in poly1305_process()
152 mul64( acc1, r1 ) + in poly1305_process()
157 mul64( acc1, r2 ) + in poly1305_process()
168 acc1 = (uint32_t) d1; in poly1305_process()
176 d0 = (uint64_t) acc1 + ( d0 >> 32U ); in poly1305_process()
177 acc1 = (uint32_t) d0; in poly1305_process()
189 ctx->acc[1] = acc1; in poly1305_process()
207 uint32_t acc0, acc1, acc2, acc3, acc4; in poly1305_compute_mac() local
212 acc1 = ctx->acc[1]; in poly1305_compute_mac()
225 d = ( (uint64_t) acc1 + ( d >> 32 ) ); in poly1305_compute_mac()
239 acc1 = ( acc1 & mask_inv ) | ( g1 & mask ); in poly1305_compute_mac()
246 d = (uint64_t) acc1 + ctx->s[1] + ( d >> 32U ); in poly1305_compute_mac()
247 acc1 = (uint32_t) d; in poly1305_compute_mac()
254 MBEDTLS_PUT_UINT32_LE( acc1, mac, 4 ); in poly1305_compute_mac()