Home
last modified time | relevance | path

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

/external/boringssl/src/crypto/curve25519/
Dcurve25519.c3827 int64_t carry10; in x25519_sc_reduce() local
3889 carry10 = (s10 + (1 << 20)) >> 21; in x25519_sc_reduce()
3890 s11 += carry10; in x25519_sc_reduce()
3891 s10 -= carry10 << 21; in x25519_sc_reduce()
3981 carry10 = (s10 + (1 << 20)) >> 21; in x25519_sc_reduce()
3982 s11 += carry10; in x25519_sc_reduce()
3983 s10 -= carry10 << 21; in x25519_sc_reduce()
4042 carry10 = s10 >> 21; in x25519_sc_reduce()
4043 s11 += carry10; in x25519_sc_reduce()
4044 s10 -= carry10 << 21; in x25519_sc_reduce()
[all …]