Home
last modified time | relevance | path

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

/external/openssl/crypto/bn/
Dbn_mod.c265 int max_shift; in BN_mod_lshift_quick() local
268 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()
/external/v8/src/arm/
Dconstants-arm.h171 max_shift = 4 enumerator
Ddisasm-arm.cc195 static const char* shift_names[max_shift] = {
/external/v8/src/
Dserialize.cc860 const int max_shift = ((kPointerSize * kBitsPerByte) / 7) * 7; in PutInt() local
861 for (int shift = max_shift; shift > 0; shift -= 7) { in PutInt()