Searched refs:mul64 (Results 1 – 1 of 1) sorted by relevance
/mbedtls-3.4.0/library/ |
D | poly1305.c | 42 static uint64_t mul64( uint32_t a, uint32_t b ) in mul64() function 58 static inline uint64_t mul64( uint32_t a, uint32_t b ) in mul64() function 124 d0 = mul64( acc0, r0 ) + in poly1305_process() 125 mul64( acc1, rs3 ) + in poly1305_process() 126 mul64( acc2, rs2 ) + in poly1305_process() 127 mul64( acc3, rs1 ); in poly1305_process() 128 d1 = mul64( acc0, r1 ) + in poly1305_process() 129 mul64( acc1, r0 ) + in poly1305_process() 130 mul64( acc2, rs3 ) + in poly1305_process() 131 mul64( acc3, rs2 ) + in poly1305_process() [all …]
|