Home
last modified time | relevance | path

Searched refs:shift_count (Results 1 – 25 of 509) sorted by relevance

12345678910>>...21

/dports/audio/wavpack/wavpack-5.4.0/src/
H A Dpack_floats.c39 int32_t count, value, shift_count; in scan_float_data() local
70 shift_count = 0; in scan_float_data()
84 shift_count = max_exp ? max_exp - 1 : 0; in scan_float_data()
93 if (shift_count < 25) in scan_float_data()
116 else if (shift_count) { in scan_float_data()
117 int32_t mask = (1 << shift_count) - 1; in scan_float_data()
210 int32_t count, value, shift_count; in send_float_data() local
224 shift_count = 0; in send_float_data()
235 if (shift_count < 25) in send_float_data()
236 value >>= shift_count; in send_float_data()
[all …]
H A Dunpack_floats.c32 int shift_count = 0, exp = wps->float_max_exp; in float_values() local
72 shift_count++; in float_values()
76 if (shift_count &= 0x1f) { in float_values()
79 *values |= ((1U << shift_count) - 1); in float_values()
81 getbits (&temp, shift_count, &wps->wvxbits); in float_values()
82 *values |= temp & ((1U << shift_count) - 1); in float_values()
101 int shift_count = 0, exp = wps->float_max_exp; in float_values_nowvx() local
120 shift_count++; in float_values_nowvx()
124 if ((shift_count &= 0x1f) && (wps->float_flags & FLOAT_SHIFT_ONES)) in float_values_nowvx()
125 *values |= ((1U << shift_count) - 1); in float_values_nowvx()
/dports/emulators/dps8m/dps8m-572f79bb4f0f84a8b16c3892c894c2b9ed64b458/src/dps8/
H A Ddps8_math.c527 int shift_count = -1; local
534 shift_count = 0;
1911 int shift_count = -1; in fcmp() local
1916 shift_count = 0; in fcmp()
2092 int shift_count = -1; in fcmg() local
2097 shift_count = 0; in fcmg()
2407 shift_count = 0; in dufa()
3821 shift_count = 0; in dfcmp()
3881 shift_count = 0; in dfcmp()
3944 shift_count = 0; in dfcmp()
[all …]
/dports/devel/urjtag/urjtag-2021.03/src/stapl/
H A Djamjtag.c1044 if (shift_count > JAMC_MAX_JTAG_IR_LENGTH) in urj_jam_do_irscan()
1049 else if (shift_count > urj_jam_ir_length) in urj_jam_do_irscan()
1051 alloc_chars = (shift_count + 7) >> 3; in urj_jam_do_irscan()
1167 if (shift_count > JAMC_MAX_JTAG_IR_LENGTH) in urj_jam_swap_ir()
1172 else if (shift_count > urj_jam_ir_length) in urj_jam_swap_ir()
1174 alloc_chars = (shift_count + 7) >> 3; in urj_jam_swap_ir()
1297 if (shift_count > JAMC_MAX_JTAG_DR_LENGTH) in urj_jam_do_drscan()
1302 else if (shift_count > urj_jam_dr_length) in urj_jam_do_drscan()
1304 alloc_chars = (shift_count + 7) >> 3; in urj_jam_do_drscan()
1424 else if (shift_count > urj_jam_dr_length) in urj_jam_swap_dr()
[all …]
/dports/games/freecell-solver/freecell-solver-6.2.0/
H A Dvar_base_reader.h39 unsigned long shift_count = 0; in fc_solve_var_base_reader_start() local
40 for (size_t count = 0; count < data_len; count++, shift_count += NUM_BITS) in fc_solve_var_base_reader_start()
43 s->data |= (((var_base_int)data[count]) << shift_count); in fc_solve_var_base_reader_start()
47 FCS_var_base_int__left_shift(s->data_byte_offset, shift_count); in fc_solve_var_base_reader_start()
/dports/multimedia/gstreamer1-plugins-svt-vp9/SVT-VP9-0.3.0/Source/Lib/Codec/
H A DEbBitstreamUnit.c77 uint32_t shift_count; in output_bitstream_write() local
86 shift_count = number_of_bits - bitstream_ptr->valid_bits_count; in output_bitstream_write()
89 bitstream_ptr->byte_holder |= bits >> shift_count; in output_bitstream_write()
93 bitstream_ptr->valid_bits_count = 32 - shift_count; in output_bitstream_write()
94 bitstream_ptr->byte_holder = ( 0 == shift_count ) ? in output_bitstream_write()
/dports/multimedia/svt-vp9/SVT-VP9-0.3.0/Source/Lib/Codec/
H A DEbBitstreamUnit.c77 uint32_t shift_count; in output_bitstream_write() local
86 shift_count = number_of_bits - bitstream_ptr->valid_bits_count; in output_bitstream_write()
89 bitstream_ptr->byte_holder |= bits >> shift_count; in output_bitstream_write()
93 bitstream_ptr->valid_bits_count = 32 - shift_count; in output_bitstream_write()
94 bitstream_ptr->byte_holder = ( 0 == shift_count ) ? in output_bitstream_write()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/misc/altera-stapl/
H A Daltera-jtag.c636 if (shift_count > js->ir_length) { in altera_irscan()
637 alloc_chars = (shift_count + 7) >> 3; in altera_irscan()
664 shift_count, in altera_irscan()
735 if (shift_count > js->ir_length) { in altera_swap_ir()
736 alloc_chars = (shift_count + 7) >> 3; in altera_swap_ir()
764 shift_count, in altera_swap_ir()
839 if (shift_count > js->dr_length) { in altera_drscan()
840 alloc_chars = (shift_count + 7) >> 3; in altera_drscan()
930 if (shift_count > js->dr_length) { in altera_swap_dr()
931 alloc_chars = (shift_count + 7) >> 3; in altera_swap_dr()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/misc/altera-stapl/
H A Daltera-jtag.c636 if (shift_count > js->ir_length) { in altera_irscan()
637 alloc_chars = (shift_count + 7) >> 3; in altera_irscan()
664 shift_count, in altera_irscan()
735 if (shift_count > js->ir_length) { in altera_swap_ir()
736 alloc_chars = (shift_count + 7) >> 3; in altera_swap_ir()
764 shift_count, in altera_swap_ir()
839 if (shift_count > js->dr_length) { in altera_drscan()
840 alloc_chars = (shift_count + 7) >> 3; in altera_drscan()
930 if (shift_count > js->dr_length) { in altera_swap_dr()
931 alloc_chars = (shift_count + 7) >> 3; in altera_swap_dr()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/misc/altera-stapl/
H A Daltera-jtag.c636 if (shift_count > js->ir_length) { in altera_irscan()
637 alloc_chars = (shift_count + 7) >> 3; in altera_irscan()
664 shift_count, in altera_irscan()
735 if (shift_count > js->ir_length) { in altera_swap_ir()
736 alloc_chars = (shift_count + 7) >> 3; in altera_swap_ir()
764 shift_count, in altera_swap_ir()
839 if (shift_count > js->dr_length) { in altera_drscan()
840 alloc_chars = (shift_count + 7) >> 3; in altera_drscan()
930 if (shift_count > js->dr_length) { in altera_swap_dr()
931 alloc_chars = (shift_count + 7) >> 3; in altera_swap_dr()
[all …]
/dports/www/firefox/firefox-99.0/third_party/rust/jsparagus-parser/src/
H A Dsimulator.rs48 assert!(state < TABLES.shift_count); in shift()
66 if state >= TABLES.shift_count { in shift()
67 assert!(state < TABLES.action_count + TABLES.shift_count); in shift()
73 assert!(state < TABLES.shift_count); in shift()
195 assert!(state < TABLES.shift_count); in try_error_handling()
H A Dparser.rs37 debug_assert!(state < TABLES.shift_count); in shift()
59 if state >= TABLES.shift_count { in shift()
60 assert!(state < TABLES.action_count + TABLES.shift_count); in shift()
67 debug_assert!(state < TABLES.shift_count); in shift()
120 assert!(entry_state < TABLES.shift_count); in new()
209 assert!(state < TABLES.shift_count); in try_error_handling()
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/jsparagus-parser/src/
H A Dsimulator.rs48 assert!(state < TABLES.shift_count); in shift()
66 if state >= TABLES.shift_count { in shift()
67 assert!(state < TABLES.action_count + TABLES.shift_count); in shift()
73 assert!(state < TABLES.shift_count); in shift()
195 assert!(state < TABLES.shift_count); in try_error_handling()
H A Dparser.rs37 debug_assert!(state < TABLES.shift_count); in shift()
59 if state >= TABLES.shift_count { in shift()
60 assert!(state < TABLES.action_count + TABLES.shift_count); in shift()
67 debug_assert!(state < TABLES.shift_count); in shift()
120 assert!(entry_state < TABLES.shift_count); in new()
209 assert!(state < TABLES.shift_count); in try_error_handling()
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/jsparagus-parser/src/
H A Dsimulator.rs48 assert!(state < TABLES.shift_count); in shift()
66 if state >= TABLES.shift_count { in shift()
67 assert!(state < TABLES.action_count + TABLES.shift_count); in shift()
73 assert!(state < TABLES.shift_count); in shift()
195 assert!(state < TABLES.shift_count); in try_error_handling()
H A Dparser.rs37 debug_assert!(state < TABLES.shift_count); in shift()
59 if state >= TABLES.shift_count { in shift()
60 assert!(state < TABLES.action_count + TABLES.shift_count); in shift()
67 debug_assert!(state < TABLES.shift_count); in shift()
120 assert!(entry_state < TABLES.shift_count); in new()
209 assert!(state < TABLES.shift_count); in try_error_handling()
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/jsparagus-parser/src/
H A Dsimulator.rs38 assert!(state < TABLES.shift_count); in shift()
56 if state >= TABLES.shift_count { in shift()
57 assert!(state < TABLES.action_count + TABLES.shift_count); in shift()
63 assert!(state < TABLES.shift_count); in shift()
176 assert!(state < TABLES.shift_count); in try_error_handling()
H A Dparser.rs37 debug_assert!(state < TABLES.shift_count); in shift()
60 if state >= TABLES.shift_count { in shift()
61 assert!(state < TABLES.action_count + TABLES.shift_count); in shift()
68 debug_assert!(state < TABLES.shift_count); in shift()
107 assert!(entry_state < TABLES.shift_count); in new()
196 assert!(state < TABLES.shift_count); in try_error_handling()
/dports/lang/gcc11/gcc-11.2.0/libstdc++-v3/testsuite/experimental/simd/tests/
H A Dinteger_operators.cc151 constexpr int shift_count = nbits - 1; in test() local
152 COMPARE(V(1) << shift_count, V(T(1) << shift_count)); in test()
155 COMPARE(V(max) << shift_count, V(max << shift_count)) in test()
156 << "shift_count: " << shift_count; in test()
/dports/lang/gcc12-devel/gcc-12-20211205/libstdc++-v3/testsuite/experimental/simd/tests/
H A Dinteger_operators.cc151 constexpr int shift_count = nbits - 1; in test() local
152 COMPARE(V(1) << shift_count, V(T(1) << shift_count)); in test()
155 COMPARE(V(max) << shift_count, V(max << shift_count)) in test()
156 << "shift_count: " << shift_count; in test()
/dports/lang/gcc11-devel/gcc-11-20211009/libstdc++-v3/testsuite/experimental/simd/tests/
H A Dinteger_operators.cc151 constexpr int shift_count = nbits - 1; in test() local
152 COMPARE(V(1) << shift_count, V(T(1) << shift_count)); in test()
155 COMPARE(V(max) << shift_count, V(max << shift_count)) in test()
156 << "shift_count: " << shift_count; in test()
/dports/misc/cxx_atomics_pic/gcc-11.2.0/libstdc++-v3/testsuite/experimental/simd/tests/
H A Dinteger_operators.cc151 constexpr int shift_count = nbits - 1; in test() local
152 COMPARE(V(1) << shift_count, V(T(1) << shift_count)); in test()
155 COMPARE(V(max) << shift_count, V(max << shift_count)) in test()
156 << "shift_count: " << shift_count; in test()
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/testsuite/gcc.target/s390/vector/
H A Dvec-shift-2.c9 shift_left_by_scalar (v4si in, int shift_count) in shift_left_by_scalar() argument
11 return in << (3 + shift_count); in shift_left_by_scalar()
/dports/lang/gcc8/gcc-8.5.0/gcc/testsuite/gcc.target/s390/vector/
H A Dvec-shift-2.c9 shift_left_by_scalar (v4si in, int shift_count) in shift_left_by_scalar() argument
11 return in << (3 + shift_count); in shift_left_by_scalar()
/dports/lang/gcc10/gcc-10.3.0/gcc/testsuite/gcc.target/s390/vector/
H A Dvec-shift-2.c9 shift_left_by_scalar (v4si in, int shift_count) in shift_left_by_scalar() argument
11 return in << (3 + shift_count); in shift_left_by_scalar()

12345678910>>...21