Home
last modified time | relevance | path

Searched refs:carry3 (Results 1 – 1 of 1) sorted by relevance

/external/boringssl/src/third_party/fiat/
Dcurve25519.c1093 int64_t carry3; in x25519_sc_reduce() local
1261 carry3 = (s3 + (1 << 20)) >> 21; in x25519_sc_reduce()
1262 s4 += carry3; in x25519_sc_reduce()
1263 s3 -= int64_lshift21(carry3); in x25519_sc_reduce()
1294 carry3 = s3 >> 21; in x25519_sc_reduce()
1295 s4 += carry3; in x25519_sc_reduce()
1296 s3 -= int64_lshift21(carry3); in x25519_sc_reduce()
1339 carry3 = s3 >> 21; in x25519_sc_reduce()
1340 s4 += carry3; in x25519_sc_reduce()
1341 s3 -= int64_lshift21(carry3); in x25519_sc_reduce()
[all …]