Searched refs:carry5 (Results 1 – 6 of 6) sorted by relevance
24 int64_t carry5; in fe25519_frombytes() local39 carry5 = (h5 + (int64_t)(1L << 24)) >> 25; in fe25519_frombytes()40 h6 += carry5; in fe25519_frombytes()41 h5 -= carry5 * ((uint64_t) 1L << 25); in fe25519_frombytes()114 int32_t carry0, carry1, carry2, carry3, carry4, carry5, carry6, carry7, carry8, carry9; in fe25519_reduce() local147 carry5 = h5 >> 25; in fe25519_reduce()148 h6 += carry5; in fe25519_reduce()149 h5 -= carry5 * ((uint32_t) 1L << 25); in fe25519_reduce()
48 uint64_t carry5; in fe_frombytes() local57 carry5 = h5 >> 25; h6 += carry5; h5 &= 0x1FFFFFF; in fe_frombytes()
534 int64_t carry5; in fe25519_mul() local561 carry5 = (h5 + (int64_t)(1L << 24)) >> 25; in fe25519_mul()562 h6 += carry5; in fe25519_mul()563 h5 -= carry5 * ((uint64_t) 1L << 25); in fe25519_mul()737 int64_t carry5; in fe25519_sq() local753 carry5 = (h5 + (int64_t)(1L << 24)) >> 25; in fe25519_sq()754 h6 += carry5; in fe25519_sq()755 h5 -= carry5 * ((uint64_t) 1L << 25); in fe25519_sq()909 int64_t carry5; in fe25519_sq2() local936 carry5 = (h5 + (int64_t)(1L << 24)) >> 25; in fe25519_sq2()[all …]
849 int64_t carry5; in fe_frombytes() local864 carry5 = h5 + (1 << 24); in fe_frombytes()865 h6 += carry5 >> 25; in fe_frombytes()866 h5 -= carry5 & kTop39Bits; in fe_frombytes()1256 int64_t carry5; in fe_mul() local1281 carry5 = h5 + (1 << 24); in fe_mul()1282 h6 += carry5 >> 25; in fe_mul()1283 h5 -= carry5 & kTop39Bits; in fe_mul()1454 int64_t carry5; in fe_sq() local1470 carry5 = h5 + (1 << 24); in fe_sq()[all …]
1142 int64_t carry5; in sc25519_muladd() local1240 carry5 = (s5 + (int64_t) (1L << 20)) >> 21; in sc25519_muladd()1241 s6 += carry5; in sc25519_muladd()1242 s5 -= carry5 * ((uint64_t) 1L << 21); in sc25519_muladd()1413 carry5 = (s5 + (int64_t) (1L << 20)) >> 21; in sc25519_muladd()1414 s6 += carry5; in sc25519_muladd()1415 s5 -= carry5 * ((uint64_t) 1L << 21); in sc25519_muladd()1449 carry5 = s5 >> 21; in sc25519_muladd()1450 s6 += carry5; in sc25519_muladd()1451 s5 -= carry5 * ((uint64_t) 1L << 21); in sc25519_muladd()[all …]
1081 int64_t carry5; in x25519_sc_reduce() local1250 carry5 = (s5 + (1 << 20)) >> 21; in x25519_sc_reduce()1251 s6 += carry5; in x25519_sc_reduce()1252 s5 -= int64_lshift21(carry5); in x25519_sc_reduce()1286 carry5 = s5 >> 21; in x25519_sc_reduce()1287 s6 += carry5; in x25519_sc_reduce()1288 s5 -= int64_lshift21(carry5); in x25519_sc_reduce()1331 carry5 = s5 >> 21; in x25519_sc_reduce()1332 s6 += carry5; in x25519_sc_reduce()1333 s5 -= int64_lshift21(carry5); in x25519_sc_reduce()