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.c291 int max_shift; in BN_mod_lshift_quick() local
294 max_shift = BN_num_bits(m) - BN_num_bits(r); in BN_mod_lshift_quick()
297 if (max_shift < 0) { in BN_mod_lshift_quick()
302 if (max_shift > n) in BN_mod_lshift_quick()
303 max_shift = n; in BN_mod_lshift_quick()
305 if (max_shift) { in BN_mod_lshift_quick()
306 if (!BN_lshift(r, r, max_shift)) in BN_mod_lshift_quick()
308 n -= max_shift; in BN_mod_lshift_quick()
/third_party/node/deps/openssl/openssl/crypto/bn/
Dbn_mod.c301 int max_shift; in BN_mod_lshift_quick() local
304 max_shift = BN_num_bits(m) - BN_num_bits(r); in BN_mod_lshift_quick()
307 if (max_shift < 0) { in BN_mod_lshift_quick()
312 if (max_shift > n) in BN_mod_lshift_quick()
313 max_shift = n; in BN_mod_lshift_quick()
315 if (max_shift) { in BN_mod_lshift_quick()
316 if (!BN_lshift(r, r, max_shift)) in BN_mod_lshift_quick()
318 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.cpp761 const unsigned max_shift = 64; in TEST_F() local
763 for (unsigned i = 0; i <= max_shift; i++) in TEST_F()
768 for (unsigned i = 0; i <= max_shift; i++) { in TEST_F()
807 const unsigned max_shift = 64; in TEST_F() local
809 for (unsigned i = 0; i <= max_shift; i++) in TEST_F()
814 for (unsigned i = 0; i <= max_shift; i++) { in TEST_F()
863 const unsigned max_shift = 64; in TEST_F() local
865 for (unsigned i = 0; i <= max_shift; i++) in TEST_F()
870 for (unsigned i = 0; i <= max_shift; i++) { in TEST_F()
881 const unsigned max_shift = 64; in TEST_F() local
[all …]
/third_party/mesa3d/src/compiler/nir/
Dnir_lower_subgroups.c428 nir_const_value max_shift[4] = { 0 }; in build_ballot_imm_ishl() local
430 max_shift[i].i32 = (i + 1) * options->ballot_bit_size; in build_ballot_imm_ishl()
431 nir_ssa_def *max_shift_val = nir_build_imm(b, options->ballot_components, 32, max_shift); in build_ballot_imm_ishl()