Lines Matching refs:carry2

815     int64_t carry2;  in fe_frombytes()  local
831 carry2 = h2 + (1 << 25); h3 += carry2 >> 26; h2 -= carry2 & kTop38Bits; in fe_frombytes()
1193 int64_t carry2; in fe_mul() local
1221 carry2 = h2 + (1 << 25); h3 += carry2 >> 26; h2 -= carry2 & kTop38Bits; in fe_mul()
1367 int64_t carry2; in fe_sq() local
1382 carry2 = h2 + (1 << 25); h3 += carry2 >> 26; h2 -= carry2 & kTop38Bits; in fe_sq()
1676 int64_t carry2; in fe_sq2() local
1702 carry2 = h2 + (1 << 25); h3 += carry2 >> 26; h2 -= carry2 & kTop38Bits; in fe_sq2()
4339 int64_t carry2; in fe_mul121666() local
4355 carry2 = h2 + (1 << 25); h3 += carry2 >> 26; h2 -= carry2 & kTop38Bits; in fe_mul121666()
4648 int64_t carry2; in x25519_sc_reduce() local
4798 carry2 = (s2 + (1 << 20)) >> 21; in x25519_sc_reduce()
4799 s3 += carry2; in x25519_sc_reduce()
4800 s2 -= carry2 * (1 << 21); in x25519_sc_reduce()
4847 carry2 = s2 >> 21; in x25519_sc_reduce()
4848 s3 += carry2; in x25519_sc_reduce()
4849 s2 -= carry2 * (1 << 21); in x25519_sc_reduce()
4892 carry2 = s2 >> 21; in x25519_sc_reduce()
4893 s3 += carry2; in x25519_sc_reduce()
4894 s2 -= carry2 * (1 << 21); in x25519_sc_reduce()
5029 int64_t carry2; in sc_muladd() local
5079 carry2 = (s2 + (1 << 20)) >> 21; in sc_muladd()
5080 s3 += carry2; in sc_muladd()
5081 s2 -= carry2 * (1 << 21); in sc_muladd()
5281 carry2 = (s2 + (1 << 20)) >> 21; in sc_muladd()
5282 s3 += carry2; in sc_muladd()
5283 s2 -= carry2 * (1 << 21); in sc_muladd()
5330 carry2 = s2 >> 21; in sc_muladd()
5331 s3 += carry2; in sc_muladd()
5332 s2 -= carry2 * (1 << 21); in sc_muladd()
5375 carry2 = s2 >> 21; in sc_muladd()
5376 s3 += carry2; in sc_muladd()
5377 s2 -= carry2 * (1 << 21); in sc_muladd()