Lines Matching refs:uint32_t
30 static uint64_t mul64(uint32_t a, uint32_t b) in mul64()
39 const uint32_t lo = (uint32_t) al * bl; in mul64()
40 const uint64_t me = (uint64_t) ((uint32_t) ah * bl) + (uint32_t) al * bh; in mul64()
41 const uint32_t hi = (uint32_t) ah * bh; in mul64()
46 static inline uint64_t mul64(uint32_t a, uint32_t b) in mul64()
67 uint32_t needs_padding) in poly1305_process()
70 uint32_t acc0, acc1, acc2, acc3, acc4; in poly1305_process()
71 uint32_t r0, r1, r2, r3; in poly1305_process()
72 uint32_t rs1, rs2, rs3; in poly1305_process()
104 acc0 = (uint32_t) d0; in poly1305_process()
105 acc1 = (uint32_t) d1; in poly1305_process()
106 acc2 = (uint32_t) d2; in poly1305_process()
107 acc3 = (uint32_t) d3; in poly1305_process()
108 acc4 += (uint32_t) (d3 >> 32U) + needs_padding; in poly1305_process()
136 acc0 = (uint32_t) d0; in poly1305_process()
137 acc1 = (uint32_t) d1; in poly1305_process()
138 acc2 = (uint32_t) d2; in poly1305_process()
139 acc3 = (uint32_t) d3; in poly1305_process()
140 acc4 = (uint32_t) (d3 >> 32) + acc4; in poly1305_process()
144 acc0 = (uint32_t) d0; in poly1305_process()
146 acc1 = (uint32_t) d0; in poly1305_process()
148 acc2 = (uint32_t) d0; in poly1305_process()
150 acc3 = (uint32_t) d0; in poly1305_process()
152 acc4 = (uint32_t) d0; in poly1305_process()
175 uint32_t g0, g1, g2, g3, g4; in poly1305_compute_mac()
176 uint32_t acc0, acc1, acc2, acc3, acc4; in poly1305_compute_mac()
177 uint32_t mask; in poly1305_compute_mac()
178 uint32_t mask_inv; in poly1305_compute_mac()
193 g0 = (uint32_t) d; in poly1305_compute_mac()
195 g1 = (uint32_t) d; in poly1305_compute_mac()
197 g2 = (uint32_t) d; in poly1305_compute_mac()
199 g3 = (uint32_t) d; in poly1305_compute_mac()
200 g4 = acc4 + (uint32_t) (d >> 32U); in poly1305_compute_mac()
203 mask = (uint32_t) 0U - (g4 >> 2U); in poly1305_compute_mac()
214 acc0 = (uint32_t) d; in poly1305_compute_mac()
216 acc1 = (uint32_t) d; 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()