Lines Matching refs:acc4
70 uint32_t acc0, acc1, acc2, acc3, acc4; in poly1305_process() local
89 acc4 = ctx->acc[4]; in poly1305_process()
108 acc4 += (uint32_t) (d3 >> 32U) + needs_padding; in poly1305_process()
119 mul64(acc4, rs1); in poly1305_process()
124 mul64(acc4, rs2); in poly1305_process()
129 mul64(acc4, rs3); in poly1305_process()
130 acc4 *= r0; in poly1305_process()
140 acc4 = (uint32_t) (d3 >> 32) + acc4; in poly1305_process()
142 d0 = (uint64_t) acc0 + (acc4 >> 2) + (acc4 & 0xFFFFFFFCU); in poly1305_process()
143 acc4 &= 3U; in poly1305_process()
151 d0 = (uint64_t) acc4 + (d0 >> 32U); in poly1305_process()
152 acc4 = (uint32_t) d0; in poly1305_process()
161 ctx->acc[4] = acc4; in poly1305_process()
176 uint32_t acc0, acc1, acc2, acc3, acc4; in poly1305_compute_mac() local
184 acc4 = ctx->acc[4]; in poly1305_compute_mac()
200 g4 = acc4 + (uint32_t) (d >> 32U); in poly1305_compute_mac()