Lines Matching refs:uint64_t
72 static uint64_t mul64( uint32_t a, uint32_t b ) in mul64()
82 const uint64_t me = (uint64_t)( (uint32_t) ah * bl ) + (uint32_t) al * bh; in mul64()
85 return( lo + ( me << 16 ) + ( (uint64_t) hi << 32 ) ); in mul64()
88 static inline uint64_t mul64( uint32_t a, uint32_t b ) in mul64()
90 return( (uint64_t) a * b ); in mul64()
111 uint64_t d0, d1, d2, d3; in poly1305_process()
143 d0 += (uint64_t) acc0; in poly1305_process()
144 d1 += (uint64_t) acc1 + ( d0 >> 32U ); in poly1305_process()
145 d2 += (uint64_t) acc2 + ( d1 >> 32U ); in poly1305_process()
146 d3 += (uint64_t) acc3 + ( d2 >> 32U ); in poly1305_process()
185 d0 = (uint64_t) acc0 + ( acc4 >> 2 ) + ( acc4 & 0xFFFFFFFCU ); in poly1305_process()
188 d0 = (uint64_t) acc1 + ( d0 >> 32U ); in poly1305_process()
190 d0 = (uint64_t) acc2 + ( d0 >> 32U ); in poly1305_process()
192 d0 = (uint64_t) acc3 + ( d0 >> 32U ); in poly1305_process()
194 d0 = (uint64_t) acc4 + ( d0 >> 32U ); in poly1305_process()
217 uint64_t d; in poly1305_compute_mac()
235 d = ( (uint64_t) acc0 + 5U ); in poly1305_compute_mac()
237 d = ( (uint64_t) acc1 + ( d >> 32 ) ); in poly1305_compute_mac()
239 d = ( (uint64_t) acc2 + ( d >> 32 ) ); in poly1305_compute_mac()
241 d = ( (uint64_t) acc3 + ( d >> 32 ) ); in poly1305_compute_mac()
256 d = (uint64_t) acc0 + ctx->s[0]; in poly1305_compute_mac()
258 d = (uint64_t) acc1 + ctx->s[1] + ( d >> 32U ); in poly1305_compute_mac()
260 d = (uint64_t) acc2 + ctx->s[2] + ( d >> 32U ); in poly1305_compute_mac()