Lines Matching refs:b
381 static uint128_t add_128_128(uint128_t a, uint128_t b) in add_128_128() argument
385 result.m_low = a.m_low + b.m_low; in add_128_128()
386 result.m_high = a.m_high + b.m_high + (result.m_low < a.m_low); in add_128_128()
993 u64 a[ECC_MAX_DIGITS], b[ECC_MAX_DIGITS]; in vli_mod_inv() local
1004 vli_set(b, mod, ndigits); in vli_mod_inv()
1009 while ((cmp_result = vli_cmp(a, b, ndigits)) != 0) { in vli_mod_inv()
1021 } else if (EVEN(b)) { in vli_mod_inv()
1022 vli_rshift1(b, ndigits); in vli_mod_inv()
1031 vli_sub(a, a, b, ndigits); in vli_mod_inv()
1045 vli_sub(b, b, a, ndigits); in vli_mod_inv()
1046 vli_rshift1(b, ndigits); in vli_mod_inv()
1571 vli_mod_add(w, w, curve->b, curve->p, pk->ndigits); /* a·x + b */ in ecc_is_pubkey_valid_partial()