Searched refs:mul32x32_64 (Results 1 - 2 of 2) sorted by relevance

/external/openssh/
H A Dpoly1305.c17 #define mul32x32_64(a,b) ((uint64_t)(a) * (b)) macro
91 t[0] = mul32x32_64(h0,r0) + mul32x32_64(h1,s4) + mul32x32_64(h2,s3) + mul32x32_64(h3,s2) + mul32x32_64(h4,s1);
92 t[1] = mul32x32_64(h0,r1) + mul32x32_64(h1,r0) + mul32x32_64(h2,s4) + mul32x32_64(h
[all...]
/external/boringssl/src/crypto/poly1305/
H A Dpoly1305.c60 static uint64_t mul32x32_64(uint32_t a, uint32_t b) { return (uint64_t)a * b; } function
103 t[0] = mul32x32_64(state->h0, state->r0) + mul32x32_64(state->h1, state->s4) +
104 mul32x32_64(state->h2, state->s3) + mul32x32_64(state->h3, state->s2) +
105 mul32x32_64(state->h4, state->s1);
106 t[1] = mul32x32_64(state->h0, state->r1) + mul32x32_64(state->h1, state->r0) +
107 mul32x32_64(state->h2, state->s4) + mul32x32_64(stat
[all...]

Completed in 94 milliseconds