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

/external/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;
/external/v8/src/arm/
H A Dconstants-arm.h171 max_shift = 4 enumerator in enum:assembler::arm::Shift
H A Ddisasm-arm.cc195 static const char* shift_names[max_shift] = {
/external/v8/src/
H A Dserialize.cc860 const int max_shift = ((kPointerSize * kBitsPerByte) / 7) * 7; local
861 for (int shift = max_shift; shift > 0; shift -= 7) {

Completed in 65 milliseconds