Home
last modified time | relevance | path

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

/third_party/openssl/crypto/bn/
Dbn_mod.c287 int max_shift; in BN_mod_lshift_quick() local
290 max_shift = BN_num_bits(m) - BN_num_bits(r); in BN_mod_lshift_quick()
293 if (max_shift < 0) { in BN_mod_lshift_quick()
298 if (max_shift > n) in BN_mod_lshift_quick()
299 max_shift = n; in BN_mod_lshift_quick()
301 if (max_shift) { in BN_mod_lshift_quick()
302 if (!BN_lshift(r, r, max_shift)) in BN_mod_lshift_quick()
304 n -= max_shift; in BN_mod_lshift_quick()
/third_party/ffmpeg/libavcodec/
Dlpc.c98 int max_shift, int zero_shift) in quantize_lpc_coefs() argument
115 if(cmax * (1 << max_shift) < 1.0) { in quantize_lpc_coefs()
122 sh = max_shift; in quantize_lpc_coefs()
206 int omethod, int min_shift, int max_shift, int zero_shift) in ff_lpc_calc_coefs() argument
290 min_shift, max_shift, zero_shift); in ff_lpc_calc_coefs()
294 min_shift, max_shift, zero_shift); in ff_lpc_calc_coefs()
Dlpc.h98 int omethod, int min_shift, int max_shift, int zero_shift);
/third_party/mesa3d/src/intel/common/tests/
Dmi_builder_test.cpp759 const unsigned max_shift = 64; in TEST_F() local
761 for (unsigned i = 0; i <= max_shift; i++) in TEST_F()
766 for (unsigned i = 0; i <= max_shift; i++) { in TEST_F()
805 const unsigned max_shift = 64; in TEST_F() local
807 for (unsigned i = 0; i <= max_shift; i++) in TEST_F()
812 for (unsigned i = 0; i <= max_shift; i++) { in TEST_F()
861 const unsigned max_shift = 64; in TEST_F() local
863 for (unsigned i = 0; i <= max_shift; i++) in TEST_F()
868 for (unsigned i = 0; i <= max_shift; i++) { in TEST_F()
879 const unsigned max_shift = 64; in TEST_F() local
[all …]
/third_party/boost/libs/multiprecision/performance/
Dperformance_test.hpp277 …int max_shift = std::numeric_limits<T>::is_bounded ? s… in test_left_shift() local
283 a[i] = b[i] << (shift++ % max_shift); in test_left_shift()
289 …int max_shift = 2 + std::numeric_limits<T>::is_bounded… in test_right_shift() local
295 a[i] = b[i] >> (shift++) % max_shift; in test_right_shift()
/third_party/mesa3d/src/compiler/nir/
Dnir_lower_subgroups.c349 nir_const_value max_shift[4] = { 0 }; in build_ballot_imm_ishl() local
351 max_shift[i].i32 = (i + 1) * options->ballot_bit_size; in build_ballot_imm_ishl()
352 nir_ssa_def *max_shift_val = nir_build_imm(b, options->ballot_components, 32, max_shift); in build_ballot_imm_ishl()