Lines Matching refs:acc1
70 uint32_t acc0, acc1, acc2, acc3, acc4; in poly1305_process() local
86 acc1 = ctx->acc[1]; in poly1305_process()
101 d1 += (uint64_t) acc1 + (d0 >> 32U); in poly1305_process()
105 acc1 = (uint32_t) d1; in poly1305_process()
112 mul64(acc1, rs3) + in poly1305_process()
116 mul64(acc1, r0) + in poly1305_process()
121 mul64(acc1, r1) + in poly1305_process()
126 mul64(acc1, r2) + in poly1305_process()
137 acc1 = (uint32_t) d1; in poly1305_process()
145 d0 = (uint64_t) acc1 + (d0 >> 32U); in poly1305_process()
146 acc1 = (uint32_t) d0; in poly1305_process()
158 ctx->acc[1] = acc1; in poly1305_process()
176 uint32_t acc0, acc1, acc2, acc3, acc4; in poly1305_compute_mac() local
181 acc1 = ctx->acc[1]; in poly1305_compute_mac()
194 d = ((uint64_t) acc1 + (d >> 32)); in poly1305_compute_mac()
208 acc1 = (acc1 & mask_inv) | (g1 & mask); in poly1305_compute_mac()
215 d = (uint64_t) acc1 + ctx->s[1] + (d >> 32U); in poly1305_compute_mac()
216 acc1 = (uint32_t) d; in poly1305_compute_mac()
223 MBEDTLS_PUT_UINT32_LE(acc1, mac, 4); in poly1305_compute_mac()