Searched refs:mul64 (Results 1 – 1 of 1) sorted by relevance
/mbedtls-latest/library/ |
D | poly1305.c | 30 static uint64_t mul64(uint32_t a, uint32_t b) in mul64() function 46 static inline uint64_t mul64(uint32_t a, uint32_t b) in mul64() function 111 d0 = mul64(acc0, r0) + in poly1305_process() 112 mul64(acc1, rs3) + in poly1305_process() 113 mul64(acc2, rs2) + in poly1305_process() 114 mul64(acc3, rs1); in poly1305_process() 115 d1 = mul64(acc0, r1) + in poly1305_process() 116 mul64(acc1, r0) + in poly1305_process() 117 mul64(acc2, rs3) + in poly1305_process() 118 mul64(acc3, rs2) + in poly1305_process() [all …]
|