Lines Matching refs:a
405 static uint128_t add_128_128(uint128_t a, uint128_t b) in add_128_128() argument
409 result.m_low = a.m_low + b.m_low; in add_128_128()
410 result.m_high = a.m_high + b.m_high + (result.m_low < a.m_low); in add_128_128()
1042 u64 a[ECC_MAX_DIGITS], b[ECC_MAX_DIGITS]; in vli_mod_inv() local
1052 vli_set(a, input, ndigits); in vli_mod_inv()
1058 while ((cmp_result = vli_cmp(a, b, ndigits)) != 0) { in vli_mod_inv()
1061 if (EVEN(a)) { in vli_mod_inv()
1062 vli_rshift1(a, ndigits); in vli_mod_inv()
1080 vli_sub(a, a, b, ndigits); in vli_mod_inv()
1081 vli_rshift1(a, ndigits); in vli_mod_inv()
1094 vli_sub(b, b, a, ndigits); in vli_mod_inv()
1625 vli_mod_mult_fast(w, curve->a, pk->x, curve); /* a·x */ in ecc_is_pubkey_valid_partial()