Lines Matching refs:uint32_t
60 static uint64_t mul64( uint32_t a, uint32_t b ) in mul64()
69 const uint32_t lo = (uint32_t) al * bl; in mul64()
70 const uint64_t me = (uint64_t)( (uint32_t) ah * bl ) + (uint32_t) al * bh; in mul64()
71 const uint32_t hi = (uint32_t) ah * bh; in mul64()
76 static inline uint64_t mul64( uint32_t a, uint32_t b ) in mul64()
97 uint32_t needs_padding ) in poly1305_process()
100 uint32_t acc0, acc1, acc2, acc3, acc4; in poly1305_process()
101 uint32_t r0, r1, r2, r3; in poly1305_process()
102 uint32_t rs1, rs2, rs3; in poly1305_process()
135 acc0 = (uint32_t) d0; in poly1305_process()
136 acc1 = (uint32_t) d1; in poly1305_process()
137 acc2 = (uint32_t) d2; in poly1305_process()
138 acc3 = (uint32_t) d3; in poly1305_process()
139 acc4 += (uint32_t) ( d3 >> 32U ) + needs_padding; in poly1305_process()
167 acc0 = (uint32_t) d0; in poly1305_process()
168 acc1 = (uint32_t) d1; in poly1305_process()
169 acc2 = (uint32_t) d2; in poly1305_process()
170 acc3 = (uint32_t) d3; in poly1305_process()
171 acc4 = (uint32_t) ( d3 >> 32 ) + acc4; in poly1305_process()
175 acc0 = (uint32_t) d0; in poly1305_process()
177 acc1 = (uint32_t) d0; in poly1305_process()
179 acc2 = (uint32_t) d0; in poly1305_process()
181 acc3 = (uint32_t) d0; in poly1305_process()
183 acc4 = (uint32_t) d0; in poly1305_process()
206 uint32_t g0, g1, g2, g3, g4; in poly1305_compute_mac()
207 uint32_t acc0, acc1, acc2, acc3, acc4; in poly1305_compute_mac()
208 uint32_t mask; in poly1305_compute_mac()
209 uint32_t mask_inv; in poly1305_compute_mac()
224 g0 = (uint32_t) d; in poly1305_compute_mac()
226 g1 = (uint32_t) d; in poly1305_compute_mac()
228 g2 = (uint32_t) d; in poly1305_compute_mac()
230 g3 = (uint32_t) d; in poly1305_compute_mac()
231 g4 = acc4 + (uint32_t) ( d >> 32U ); in poly1305_compute_mac()
234 mask = (uint32_t) 0U - ( g4 >> 2U ); in poly1305_compute_mac()
245 acc0 = (uint32_t) d; in poly1305_compute_mac()
247 acc1 = (uint32_t) d; in poly1305_compute_mac()
249 acc2 = (uint32_t) d; in poly1305_compute_mac()
250 acc3 += ctx->s[3] + (uint32_t) ( d >> 32U ); in poly1305_compute_mac()