Lines Matching refs:d
174 uint64_t d; in poly1305_compute_mac() local
192 d = ((uint64_t) acc0 + 5U); in poly1305_compute_mac()
193 g0 = (uint32_t) d; in poly1305_compute_mac()
194 d = ((uint64_t) acc1 + (d >> 32)); in poly1305_compute_mac()
195 g1 = (uint32_t) d; in poly1305_compute_mac()
196 d = ((uint64_t) acc2 + (d >> 32)); in poly1305_compute_mac()
197 g2 = (uint32_t) d; in poly1305_compute_mac()
198 d = ((uint64_t) acc3 + (d >> 32)); in poly1305_compute_mac()
199 g3 = (uint32_t) d; in poly1305_compute_mac()
200 g4 = acc4 + (uint32_t) (d >> 32U); in poly1305_compute_mac()
213 d = (uint64_t) acc0 + ctx->s[0]; in poly1305_compute_mac()
214 acc0 = (uint32_t) d; 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()
217 d = (uint64_t) acc2 + ctx->s[2] + (d >> 32U); in poly1305_compute_mac()
218 acc2 = (uint32_t) d; in poly1305_compute_mac()
219 acc3 += ctx->s[3] + (uint32_t) (d >> 32U); in poly1305_compute_mac()