Lines Matching refs:d0
99 uint64_t d0, d1, d2, d3; in poly1305_process() local
125 d0 = MBEDTLS_GET_UINT32_LE( input, offset + 0 ); in poly1305_process()
131 d0 += (uint64_t) acc0; in poly1305_process()
132 d1 += (uint64_t) acc1 + ( d0 >> 32U ); in poly1305_process()
135 acc0 = (uint32_t) d0; in poly1305_process()
142 d0 = mul64( acc0, r0 ) + in poly1305_process()
164 d1 += ( d0 >> 32 ); in poly1305_process()
167 acc0 = (uint32_t) d0; in poly1305_process()
173 d0 = (uint64_t) acc0 + ( acc4 >> 2 ) + ( acc4 & 0xFFFFFFFCU ); in poly1305_process()
175 acc0 = (uint32_t) d0; in poly1305_process()
176 d0 = (uint64_t) acc1 + ( d0 >> 32U ); in poly1305_process()
177 acc1 = (uint32_t) d0; in poly1305_process()
178 d0 = (uint64_t) acc2 + ( d0 >> 32U ); in poly1305_process()
179 acc2 = (uint32_t) d0; in poly1305_process()
180 d0 = (uint64_t) acc3 + ( d0 >> 32U ); in poly1305_process()
181 acc3 = (uint32_t) d0; in poly1305_process()
182 d0 = (uint64_t) acc4 + ( d0 >> 32U ); in poly1305_process()
183 acc4 = (uint32_t) d0; in poly1305_process()