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

/opensolaris-onvv-gate/usr/src/common/openssl/crypto/bn/
H A Dbn_mod.c265 int max_shift; local
268 max_shift = BN_num_bits(m) - BN_num_bits(r);
269 /* max_shift >= 0 */
271 if (max_shift < 0)
277 if (max_shift > n)
278 max_shift = n;
280 if (max_shift)
282 if (!BN_lshift(r, r, max_shift)) return 0;
283 n -= max_shift;

Completed in 101 milliseconds