Searched refs:nb (Results 1 – 2 of 2) sorted by relevance
/crypto/ |
D | ecc.c | 1153 int i, nb; in ecc_point_mult() local 1169 nb = !vli_test_bit(scalar, i); in ecc_point_mult() 1170 xycz_add_c(rx[1 - nb], ry[1 - nb], rx[nb], ry[nb], curve_prime, in ecc_point_mult() 1172 xycz_add(rx[nb], ry[nb], rx[1 - nb], ry[1 - nb], curve_prime, in ecc_point_mult() 1176 nb = !vli_test_bit(scalar, 0); in ecc_point_mult() 1177 xycz_add_c(rx[1 - nb], ry[1 - nb], rx[nb], ry[nb], curve_prime, in ecc_point_mult() 1184 vli_mod_mult_fast(z, z, ry[1 - nb], curve_prime, ndigits); in ecc_point_mult() 1194 vli_mod_mult_fast(z, z, rx[1 - nb], curve_prime, ndigits); in ecc_point_mult() 1197 xycz_add(rx[nb], ry[nb], rx[1 - nb], ry[1 - nb], curve_prime, ndigits); in ecc_point_mult()
|
D | algapi.c | 794 int crypto_register_notifier(struct notifier_block *nb) in crypto_register_notifier() argument 796 return blocking_notifier_chain_register(&crypto_chain, nb); in crypto_register_notifier() 800 int crypto_unregister_notifier(struct notifier_block *nb) in crypto_unregister_notifier() argument 802 return blocking_notifier_chain_unregister(&crypto_chain, nb); in crypto_unregister_notifier()
|