Lines Matching refs:acc4
112 uint32_t acc0, acc1, acc2, acc3, acc4; in poly1305_process() local
131 acc4 = ctx->acc[4]; in poly1305_process()
151 acc4 += (uint32_t) ( d3 >> 32U ) + needs_padding; in poly1305_process()
162 mul64( acc4, rs1 ); in poly1305_process()
167 mul64( acc4, rs2 ); in poly1305_process()
172 mul64( acc4, rs3 ); in poly1305_process()
173 acc4 *= r0; in poly1305_process()
183 acc4 = (uint32_t) ( d3 >> 32 ) + acc4; in poly1305_process()
185 d0 = (uint64_t) acc0 + ( acc4 >> 2 ) + ( acc4 & 0xFFFFFFFCU ); in poly1305_process()
186 acc4 &= 3U; in poly1305_process()
194 d0 = (uint64_t) acc4 + ( d0 >> 32U ); in poly1305_process()
195 acc4 = (uint32_t) d0; in poly1305_process()
204 ctx->acc[4] = acc4; in poly1305_process()
219 uint32_t acc0, acc1, acc2, acc3, acc4; in poly1305_compute_mac() local
227 acc4 = ctx->acc[4]; in poly1305_compute_mac()
243 g4 = acc4 + (uint32_t) ( d >> 32U ); in poly1305_compute_mac()