Lines Matching refs:acc3
70 uint32_t acc0, acc1, acc2, acc3, acc4; in poly1305_process() local
88 acc3 = ctx->acc[3]; in poly1305_process()
103 d3 += (uint64_t) acc3 + (d2 >> 32U); in poly1305_process()
107 acc3 = (uint32_t) d3; in poly1305_process()
114 mul64(acc3, rs1); in poly1305_process()
118 mul64(acc3, rs2) + in poly1305_process()
123 mul64(acc3, rs3) + in poly1305_process()
128 mul64(acc3, r0) + in poly1305_process()
139 acc3 = (uint32_t) d3; in poly1305_process()
149 d0 = (uint64_t) acc3 + (d0 >> 32U); in poly1305_process()
150 acc3 = (uint32_t) d0; in poly1305_process()
160 ctx->acc[3] = acc3; in poly1305_process()
176 uint32_t acc0, acc1, acc2, acc3, acc4; in poly1305_compute_mac() local
183 acc3 = ctx->acc[3]; in poly1305_compute_mac()
198 d = ((uint64_t) acc3 + (d >> 32)); in poly1305_compute_mac()
210 acc3 = (acc3 & mask_inv) | (g3 & mask); in poly1305_compute_mac()
219 acc3 += ctx->s[3] + (uint32_t) (d >> 32U); in poly1305_compute_mac()
225 MBEDTLS_PUT_UINT32_LE(acc3, mac, 12); in poly1305_compute_mac()