Searched refs:nb (Results 1 – 2 of 2) sorted by relevance
/crypto/ |
D | ecc.c | 1287 int i, nb; in ecc_point_mult() local 1302 nb = !vli_test_bit(scalar, i); in ecc_point_mult() 1303 xycz_add_c(rx[1 - nb], ry[1 - nb], rx[nb], ry[nb], curve); in ecc_point_mult() 1304 xycz_add(rx[nb], ry[nb], rx[1 - nb], ry[1 - nb], curve); in ecc_point_mult() 1307 nb = !vli_test_bit(scalar, 0); in ecc_point_mult() 1308 xycz_add_c(rx[1 - nb], ry[1 - nb], rx[nb], ry[nb], curve); in ecc_point_mult() 1314 vli_mod_mult_fast(z, z, ry[1 - nb], curve); in ecc_point_mult() 1324 vli_mod_mult_fast(z, z, rx[1 - nb], curve); in ecc_point_mult() 1327 xycz_add(rx[nb], ry[nb], rx[1 - nb], ry[1 - nb], curve); in ecc_point_mult()
|
D | algapi.c | 817 int crypto_register_notifier(struct notifier_block *nb) in crypto_register_notifier() argument 819 return blocking_notifier_chain_register(&crypto_chain, nb); in crypto_register_notifier() 823 int crypto_unregister_notifier(struct notifier_block *nb) in crypto_unregister_notifier() argument 825 return blocking_notifier_chain_unregister(&crypto_chain, nb); in crypto_unregister_notifier()
|