Searched refs:max_shift (Results 1 – 2 of 2) sorted by relevance
265 int max_shift; in BN_mod_lshift_quick() local268 max_shift = BN_num_bits(m) - BN_num_bits(r); in BN_mod_lshift_quick()271 if (max_shift < 0) in BN_mod_lshift_quick()277 if (max_shift > n) in BN_mod_lshift_quick()278 max_shift = n; in BN_mod_lshift_quick()280 if (max_shift) in BN_mod_lshift_quick()282 if (!BN_lshift(r, r, max_shift)) return 0; in BN_mod_lshift_quick()283 n -= max_shift; in BN_mod_lshift_quick()
1105 const int max_shift = ((kPointerSize * kBitsPerByte) / 7) * 7; in PutInt() local1106 for (int shift = max_shift; shift > 0; shift -= 7) { in PutInt()