Lines Matching refs:acc2
100 uint32_t acc0, acc1, acc2, acc3, acc4; in poly1305_process() local
117 acc2 = ctx->acc[2]; in poly1305_process()
133 d2 += (uint64_t) acc2 + ( d1 >> 32U ); in poly1305_process()
137 acc2 = (uint32_t) d2; in poly1305_process()
144 mul64( acc2, rs2 ) + in poly1305_process()
148 mul64( acc2, rs3 ) + in poly1305_process()
153 mul64( acc2, r0 ) + in poly1305_process()
158 mul64( acc2, r1 ) + in poly1305_process()
169 acc2 = (uint32_t) d2; in poly1305_process()
178 d0 = (uint64_t) acc2 + ( d0 >> 32U ); in poly1305_process()
179 acc2 = (uint32_t) d0; in poly1305_process()
190 ctx->acc[2] = acc2; in poly1305_process()
207 uint32_t acc0, acc1, acc2, acc3, acc4; in poly1305_compute_mac() local
213 acc2 = ctx->acc[2]; in poly1305_compute_mac()
227 d = ( (uint64_t) acc2 + ( d >> 32 ) ); in poly1305_compute_mac()
240 acc2 = ( acc2 & mask_inv ) | ( g2 & mask ); in poly1305_compute_mac()
248 d = (uint64_t) acc2 + ctx->s[2] + ( d >> 32U ); in poly1305_compute_mac()
249 acc2 = (uint32_t) d; in poly1305_compute_mac()
255 MBEDTLS_PUT_UINT32_LE( acc2, mac, 8 ); in poly1305_compute_mac()