Home
last modified time | relevance | path

Searched refs:max_shift (Results 1 – 1 of 1) sorted by relevance

/openssl-master/crypto/bn/
A Dbn_mod.c291 int max_shift; in BN_mod_lshift_quick() local
294 max_shift = BN_num_bits(m) - BN_num_bits(r); in BN_mod_lshift_quick()
297 if (max_shift < 0) { in BN_mod_lshift_quick()
302 if (max_shift > n) in BN_mod_lshift_quick()
303 max_shift = n; in BN_mod_lshift_quick()
305 if (max_shift) { in BN_mod_lshift_quick()
306 if (!BN_lshift(r, r, max_shift)) in BN_mod_lshift_quick()
308 n -= max_shift; in BN_mod_lshift_quick()

Completed in 2 milliseconds