Lines Matching refs:acc3
100 uint32_t acc0, acc1, acc2, acc3, acc4; in poly1305_process() local
118 acc3 = ctx->acc[3]; in poly1305_process()
134 d3 += (uint64_t) acc3 + ( d2 >> 32U ); in poly1305_process()
138 acc3 = (uint32_t) d3; in poly1305_process()
145 mul64( acc3, rs1 ); in poly1305_process()
149 mul64( acc3, rs2 ) + in poly1305_process()
154 mul64( acc3, rs3 ) + in poly1305_process()
159 mul64( acc3, r0 ) + in poly1305_process()
170 acc3 = (uint32_t) d3; in poly1305_process()
180 d0 = (uint64_t) acc3 + ( d0 >> 32U ); in poly1305_process()
181 acc3 = (uint32_t) d0; in poly1305_process()
191 ctx->acc[3] = acc3; in poly1305_process()
207 uint32_t acc0, acc1, acc2, acc3, acc4; in poly1305_compute_mac() local
214 acc3 = ctx->acc[3]; in poly1305_compute_mac()
229 d = ( (uint64_t) acc3 + ( d >> 32 ) ); in poly1305_compute_mac()
241 acc3 = ( acc3 & mask_inv ) | ( g3 & mask ); in poly1305_compute_mac()
250 acc3 += ctx->s[3] + (uint32_t) ( d >> 32U ); in poly1305_compute_mac()
256 MBEDTLS_PUT_UINT32_LE( acc3, mac, 12 ); in poly1305_compute_mac()