Home
last modified time | relevance | path

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

12345678

/dports/java/jlint/jlint-3.1.2/
H A Dinlines.hh68 if (unsigned(max_shift - min_shift) >= 32) { in make_lshift_mask()
72 while (min_shift <= max_shift) { in make_lshift_mask()
80 if (unsigned(max_shift - min_shift) >= 32) { in make_rshift_mask()
84 while (min_shift <= max_shift) { in make_rshift_mask()
92 if (unsigned(max_shift - min_shift) >= 32) { in make_rushift_mask()
96 while (min_shift <= max_shift) { in make_rushift_mask()
175 if (unsigned(max_shift - min_shift) >= 64) { in make_int8_lshift_mask()
179 while (min_shift <= max_shift) { in make_int8_lshift_mask()
187 if (unsigned(max_shift - min_shift) >= 64) { in make_int8_rshift_mask()
191 while (min_shift <= max_shift) { in make_int8_rshift_mask()
[all …]
/dports/emulators/mess/mame-mame0226/src/devices/machine/
H A Dupd1990a.cpp159 int max_shift = is_serial_mode() ? 6 : 5; in device_timer() local
163 for (int i = 0; i < max_shift; i++) in device_timer()
175 int max_shift = is_serial_mode() ? 6 : 5; in device_timer() local
176 for (int i = 0; i < max_shift; i++) in device_timer()
263 int max_shift = is_serial_mode() ? 6 : 5; in WRITE_LINE_MEMBER() local
264 for (int i = 0; i < max_shift; i++) in WRITE_LINE_MEMBER()
298 int max_shift = is_serial_mode() ? 6 : 5; in WRITE_LINE_MEMBER() local
299 for (int i = 0; i < max_shift; i++) in WRITE_LINE_MEMBER()
402 int max_shift = is_serial_mode() ? 6 : 5; in WRITE_LINE_MEMBER() local
403 for (int i = 0; i < max_shift; i++) in WRITE_LINE_MEMBER()
[all …]
/dports/emulators/mame/mame-mame0226/src/devices/machine/
H A Dupd1990a.cpp159 int max_shift = is_serial_mode() ? 6 : 5; in device_timer() local
163 for (int i = 0; i < max_shift; i++) in device_timer()
175 int max_shift = is_serial_mode() ? 6 : 5; in device_timer() local
176 for (int i = 0; i < max_shift; i++) in device_timer()
263 int max_shift = is_serial_mode() ? 6 : 5; in WRITE_LINE_MEMBER() local
264 for (int i = 0; i < max_shift; i++) in WRITE_LINE_MEMBER()
298 int max_shift = is_serial_mode() ? 6 : 5; in WRITE_LINE_MEMBER() local
299 for (int i = 0; i < max_shift; i++) in WRITE_LINE_MEMBER()
402 int max_shift = is_serial_mode() ? 6 : 5; in WRITE_LINE_MEMBER() local
403 for (int i = 0; i < max_shift; i++) in WRITE_LINE_MEMBER()
[all …]
/dports/security/libressl-static/libressl-3.3.5/crypto/bn/
H A Dbn_mod.c274 int max_shift; in BN_mod_lshift_quick() local
277 max_shift = BN_num_bits(m) - BN_num_bits(r); in BN_mod_lshift_quick()
280 if (max_shift < 0) { in BN_mod_lshift_quick()
285 if (max_shift > n) in BN_mod_lshift_quick()
286 max_shift = n; in BN_mod_lshift_quick()
288 if (max_shift) { in BN_mod_lshift_quick()
289 if (!BN_lshift(r, r, max_shift)) in BN_mod_lshift_quick()
291 n -= max_shift; in BN_mod_lshift_quick()
/dports/security/libressl/libressl-3.4.3/crypto/bn/
H A Dbn_mod.c274 int max_shift; in cmd_srvsvc_net_share_enum_int()
277 max_shift = BN_num_bits(m) - BN_num_bits(r); in cmd_srvsvc_net_share_enum_int()
280 if (max_shift < 0) { in cmd_srvsvc_net_share_enum_int()
285 if (max_shift > n) in cmd_srvsvc_net_share_enum_int()
286 max_shift = n; in cmd_srvsvc_net_share_enum_int()
288 if (max_shift) { in cmd_srvsvc_net_share_enum_int()
289 if (!BN_lshift(r, r, max_shift)) in cmd_srvsvc_net_share_enum_int()
291 n -= max_shift; in cmd_srvsvc_net_share_enum_int()
/dports/emulators/citra-qt5/citra-ac98458e0/externals/libressl/crypto/bn/
H A Dbn_mod.c274 int max_shift; in BN_mod_lshift_quick() local
277 max_shift = BN_num_bits(m) - BN_num_bits(r); in BN_mod_lshift_quick()
280 if (max_shift < 0) { in BN_mod_lshift_quick()
285 if (max_shift > n) in BN_mod_lshift_quick()
286 max_shift = n; in BN_mod_lshift_quick()
288 if (max_shift) { in BN_mod_lshift_quick()
289 if (!BN_lshift(r, r, max_shift)) in BN_mod_lshift_quick()
291 n -= max_shift; in BN_mod_lshift_quick()
/dports/emulators/citra/citra-ac98458e0/externals/libressl/crypto/bn/
H A Dbn_mod.c274 int max_shift; in BN_mod_lshift_quick() local
277 max_shift = BN_num_bits(m) - BN_num_bits(r); in BN_mod_lshift_quick()
280 if (max_shift < 0) { in BN_mod_lshift_quick()
285 if (max_shift > n) in BN_mod_lshift_quick()
286 max_shift = n; in BN_mod_lshift_quick()
288 if (max_shift) { in BN_mod_lshift_quick()
289 if (!BN_lshift(r, r, max_shift)) in BN_mod_lshift_quick()
291 n -= max_shift; in BN_mod_lshift_quick()
/dports/www/obhttpd/libressl-3.4.1/crypto/bn/
H A Dbn_mod.c274 int max_shift; in BN_mod_lshift_quick() local
277 max_shift = BN_num_bits(m) - BN_num_bits(r); in BN_mod_lshift_quick()
280 if (max_shift < 0) { in BN_mod_lshift_quick()
285 if (max_shift > n) in BN_mod_lshift_quick()
286 max_shift = n; in BN_mod_lshift_quick()
288 if (max_shift) { in BN_mod_lshift_quick()
289 if (!BN_lshift(r, r, max_shift)) in BN_mod_lshift_quick()
291 n -= max_shift; in BN_mod_lshift_quick()
/dports/net/p5-Socket-Class/Socket-Class-2.258/xs/sc_ssl/openssl/source/crypto/bn/
H A 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()
/dports/security/openssl-unsafe/openssl-c9ba19c/crypto/bn/
H A Dbn_mod.c282 int max_shift; in BN_mod_lshift_quick() local
285 max_shift = BN_num_bits(m) - BN_num_bits(r); in BN_mod_lshift_quick()
288 if (max_shift < 0) { in BN_mod_lshift_quick()
293 if (max_shift > n) in BN_mod_lshift_quick()
294 max_shift = n; in BN_mod_lshift_quick()
296 if (max_shift) { in BN_mod_lshift_quick()
297 if (!BN_lshift(r, r, max_shift)) in BN_mod_lshift_quick()
299 n -= max_shift; in BN_mod_lshift_quick()
/dports/sysutils/shim/shim-0.9/Cryptlib/OpenSSL/crypto/bn/
H A Dbn_mod.c282 int max_shift; in BN_mod_lshift_quick() local
285 max_shift = BN_num_bits(m) - BN_num_bits(r); in BN_mod_lshift_quick()
288 if (max_shift < 0) { in BN_mod_lshift_quick()
293 if (max_shift > n) in BN_mod_lshift_quick()
294 max_shift = n; in BN_mod_lshift_quick()
296 if (max_shift) { in BN_mod_lshift_quick()
297 if (!BN_lshift(r, r, max_shift)) in BN_mod_lshift_quick()
299 n -= max_shift; in BN_mod_lshift_quick()
/dports/math/stanmath/math-4.2.0/stan/math/opencl/
H A Dmrrr.hpp250 high - max_shift * 0.1, in find_shift()
251 low + max_shift * 0.1, in find_shift()
252 high - max_shift * 0.25, in find_shift()
253 low + max_shift * 0.25, in find_shift()
254 high - max_shift * 0.5, in find_shift()
255 low + max_shift * 0.5, in find_shift()
256 high - max_shift * 0.75, in find_shift()
257 low + max_shift * 0.75, in find_shift()
258 high - max_shift, in find_shift()
259 low + max_shift, in find_shift()
[all …]
/dports/graphics/tesseract/tesseract-5.0.0/src/ccmain/
H A Dfixxht.cpp159 int max_shift = max_bottom - bottom; in ComputeCompatibleXheight() local
161 tprintf(" bottom shift min=%d, max=%d\n", min_shift, max_shift); in ComputeCompatibleXheight()
167 if (max_shift > min_shift) { in ComputeCompatibleXheight()
168 misfit_weight /= max_shift - min_shift; in ComputeCompatibleXheight()
170 for (int y = min_shift; y <= max_shift; ++y) { in ComputeCompatibleXheight()
/dports/devel/cargo-c/cargo-c-0.9.6+cargo-0.58/cargo-crates/openssl-src-111.16.0+1.1.1l/openssl/crypto/bn/
H A 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()
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/openssl-src-300.0.2+3.0.0/openssl/crypto/bn/
H A 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()
/dports/emulators/qemu42/qemu-4.2.1/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/crypto/bn/
H A 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()
/dports/sysutils/uefi-edk2-qemu/edk2-edk2-stable201911/CryptoPkg/Library/OpensslLib/openssl/crypto/bn/
H A 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()
/dports/sysutils/vector/vector-0.10.0/cargo-crates/openssl-src-111.9.0+1.1.1g/openssl/crypto/bn/
H A 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()
/dports/emulators/qemu5/qemu-5.2.0/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/crypto/bn/
H A 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()
/dports/sysutils/uefi-edk2-bhyve/edk2-edk2-stable202102/CryptoPkg/Library/OpensslLib/openssl/crypto/bn/
H A 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()
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/openssl-src-111.14.0+1.1.1j/openssl/crypto/bn/
H A 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()
/dports/devel/godot2/godot-2.1.6-stable/thirdparty/openssl/crypto/bn/
H A Dbn_mod.c402 int max_shift; in BN_mod_lshift_quick() local
405 max_shift = BN_num_bits(m) - BN_num_bits(r); in BN_mod_lshift_quick()
408 if (max_shift < 0) { in BN_mod_lshift_quick()
413 if (max_shift > n) in BN_mod_lshift_quick()
414 max_shift = n; in BN_mod_lshift_quick()
416 if (max_shift) { in BN_mod_lshift_quick()
417 if (!BN_lshift(r, r, max_shift)) in BN_mod_lshift_quick()
419 n -= max_shift; in BN_mod_lshift_quick()
/dports/devel/godot2-tools/godot-2.1.6-stable/thirdparty/openssl/crypto/bn/
H A Dbn_mod.c402 int max_shift; in BN_mod_lshift_quick() local
405 max_shift = BN_num_bits(m) - BN_num_bits(r); in BN_mod_lshift_quick()
408 if (max_shift < 0) { in BN_mod_lshift_quick()
413 if (max_shift > n) in BN_mod_lshift_quick()
414 max_shift = n; in BN_mod_lshift_quick()
416 if (max_shift) { in BN_mod_lshift_quick()
417 if (!BN_lshift(r, r, max_shift)) in BN_mod_lshift_quick()
419 n -= max_shift; in BN_mod_lshift_quick()
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/openssl-src-111.15.0+1.1.1k/openssl/crypto/bn/
H A 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()
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/openssl-src-111.16.0+1.1.1l/openssl/crypto/bn/
H A 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()

12345678