Home
last modified time | relevance | path

Searched refs:shift_count (Results 1 - 6 of 6) sorted by relevance

/third_party/backends/backend/genesys/
H A Dimage_pipeline.cpp556 auto shift_count = pixel_shifts_.size(); in get_next_row_data() local
559 rows.resize(shift_count, nullptr); in get_next_row_data()
561 for (std::size_t irow = 0; irow < shift_count; ++irow) { in get_next_row_data()
566 for (std::size_t irow = 0; irow < shift_count && x < width; irow++, x++) { in get_next_row_data()
597 auto shift_count = pixel_shifts_.size(); in get_next_row_data() local
599 for (std::size_t x = 0, width = get_width(); x < width; x += shift_count) { in get_next_row_data()
600 for (std::size_t ishift = 0; ishift < shift_count && x + ishift < width; ishift++) { in get_next_row_data()
/third_party/mbedtls/scripts/mbedtls_dev/
H A Dbignum_core.py43 self.shift_count = count
48 str(self.shift_count),
53 self.shift_count)
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_vec4_gs_visitor.cpp405 /* reg:shift_count = 2 * (vertex_count - 1) */ in set_stream_control_data_bits()
406 src_reg shift_count(this, glsl_type::uint_type); in set_stream_control_data_bits()
407 emit(SHL(dst_reg(shift_count), this->vertex_count, brw_imm_ud(1u))); in set_stream_control_data_bits()
415 emit(SHL(dst_reg(mask), sid, shift_count)); in set_stream_control_data_bits()
H A Dbrw_fs_nir.cpp2397 /* reg:shift_count = 2 * (vertex_count - 1) */
2398 fs_reg shift_count = bld.vgrf(BRW_REGISTER_TYPE_UD, 1);
2399 abld.SHL(shift_count, vertex_count, brw_imm_ud(1u));
2407 abld.SHL(mask, sid, shift_count);
/third_party/ffmpeg/libavcodec/
H A Dwavpackenc.c228 int32_t shift_count, value, f = *sample; in process_float() local
233 shift_count = 0; in process_float()
235 shift_count = s->max_exp - get_exponent(f); in process_float()
238 shift_count = s->max_exp ? s->max_exp - 1 : 0; in process_float()
242 if (shift_count < 25) in process_float()
243 value >>= shift_count; in process_float() local
252 } else if (shift_count) { in process_float()
253 int32_t mask = (1 << shift_count) - 1; in process_float()
2164 int32_t value, shift_count; in pack_float_sample() local
2175 shift_count in pack_float_sample()
2185 value >>= shift_count; pack_float_sample() local
[all...]
/third_party/mesa3d/src/gallium/drivers/zink/nir_to_spirv/
H A Dnir_to_spirv.c2116 SpvId shift_count = emit_binop(ctx, SpvOpBitwiseAnd, shift_type, src[1], shift_mask); \ in emit_alu()
2117 result = emit_binop(ctx, spirv_op, dest_type, src[0], shift_count); \ in emit_alu()

Completed in 23 milliseconds