Lines Matching refs:acc0
112 uint32_t acc0, acc1, acc2, acc3, acc4; in poly1305_process() local
127 acc0 = ctx->acc[0]; in poly1305_process()
143 d0 += (uint64_t) acc0; in poly1305_process()
147 acc0 = (uint32_t) d0; in poly1305_process()
154 d0 = mul64( acc0, r0 ) + in poly1305_process()
158 d1 = mul64( acc0, r1 ) + in poly1305_process()
163 d2 = mul64( acc0, r2 ) + in poly1305_process()
168 d3 = mul64( acc0, r3 ) + in poly1305_process()
179 acc0 = (uint32_t) d0; in poly1305_process()
185 d0 = (uint64_t) acc0 + ( acc4 >> 2 ) + ( acc4 & 0xFFFFFFFCU ); in poly1305_process()
187 acc0 = (uint32_t) d0; in poly1305_process()
200 ctx->acc[0] = acc0; in poly1305_process()
219 uint32_t acc0, acc1, acc2, acc3, acc4; in poly1305_compute_mac() local
223 acc0 = ctx->acc[0]; in poly1305_compute_mac()
235 d = ( (uint64_t) acc0 + 5U ); in poly1305_compute_mac()
250 acc0 = ( acc0 & mask_inv ) | ( g0 & mask ); in poly1305_compute_mac()
256 d = (uint64_t) acc0 + ctx->s[0]; in poly1305_compute_mac()
257 acc0 = (uint32_t) d; in poly1305_compute_mac()
265 mac[ 0] = (unsigned char)( acc0 ); in poly1305_compute_mac()
266 mac[ 1] = (unsigned char)( acc0 >> 8 ); in poly1305_compute_mac()
267 mac[ 2] = (unsigned char)( acc0 >> 16 ); in poly1305_compute_mac()
268 mac[ 3] = (unsigned char)( acc0 >> 24 ); in poly1305_compute_mac()