Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/crypto/bn/
H A Dbn_mod.c301 int max_shift; in BN_mod_lshift_quick() local
304 max_shift = BN_num_bits(m) - BN_num_bits(r); in BN_mod_lshift_quick()
307 if (max_shift < 0) { in BN_mod_lshift_quick()
312 if (max_shift > n) in BN_mod_lshift_quick()
313 max_shift = n; in BN_mod_lshift_quick()
315 if (max_shift) { in BN_mod_lshift_quick()
316 if (!BN_lshift(r, r, max_shift)) in BN_mod_lshift_quick()
318 n -= max_shift; in BN_mod_lshift_quick()