Home
last modified time | relevance | path

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

/external/libhevc/common/
Dihevc_quant_iquant_ssd.c194 WORD32 block_row, block_col; in ihevc_quant_iquant_ssd() local
205 for(block_col = 0; block_col < trans_size / 4; block_col++) in ihevc_quant_iquant_ssd()
207 pi2_block = pi2_q_dst + block_row * dst_q_strd + block_col * 4; in ihevc_quant_iquant_ssd()
208 *(csbf + block_col) = 0; in ihevc_quant_iquant_ssd()
216 *(csbf + block_col) = 1; in ihevc_quant_iquant_ssd()
220 if(*(csbf + block_col) == 1) in ihevc_quant_iquant_ssd()
223 temp_zero_col = (temp_zero_col) | (0xFU << block_col * 4); in ihevc_quant_iquant_ssd()
238 cbf = cbf || (*(csbf + block_col)); // cbf update in ihevc_quant_iquant_ssd()
373 WORD32 block_row, block_col; in ihevc_quant_iquant() local
384 for(block_col = 0; block_col < trans_size / 4; block_col++) in ihevc_quant_iquant()
[all …]
/external/ruy/ruy/
Dpack_arm.h160 for (int block_col = start_col; block_col < end_col; block_col += 4) {
162 const Scalar* src_ptr0 = src_matrix.data.get() + src_stride * block_col;
170 if (block_col >= src_matrix.layout.cols - 3) {
171 if (block_col >= src_matrix.layout.cols - 0) {
175 if (block_col >= src_matrix.layout.cols - 1) {
179 if (block_col >= src_matrix.layout.cols - 2) {
183 if (block_col >= src_matrix.layout.cols - 3) {
189 packed_matrix->data + packed_matrix->layout.stride * block_col;
190 std::int32_t* sums_ptr = sums ? sums + block_col : nullptr;
243 for (int block_col = start_col; block_col < end_col; block_col += 2) {
[all …]
Dpack_x86.h87 for (int block_col = start_col; block_col < end_col;
88 block_col += Layout::kCols) {
89 std::int32_t* sums_ptr = sums ? sums + block_col : nullptr;
91 const Scalar* src_ptr = src_matrix.data.get() + src_stride * block_col;
92 int remaining_src_cols = src_matrix.layout.cols - block_col;
97 packed_matrix->layout.stride * (block_col & block_col_mask);
134 for (int block_col = start_col; block_col < end_col;
135 block_col += Layout::kCols) {
136 std::int32_t* sums_ptr = sums ? sums + block_col : nullptr;
138 const Scalar* src_ptr = src_matrix.data.get() + src_stride * block_col;
[all …]
/external/libhevc/common/arm/
Dihevc_quant_iquant_ssd_neon_intr.c91 WORD32 block_col = 0; in ihevc_quant_iquant_ssd_flat_scale_mat_neon() local
230 *(csbf + block_col) = 0; in ihevc_quant_iquant_ssd_flat_scale_mat_neon()
236 *(csbf + block_col) = 1; in ihevc_quant_iquant_ssd_flat_scale_mat_neon()
239 if(*(csbf + block_col) == 1) in ihevc_quant_iquant_ssd_flat_scale_mat_neon()
241 temp_zero_col |= (0xF << block_col * 4); in ihevc_quant_iquant_ssd_flat_scale_mat_neon()
309 cbf = cbf || (*(csbf + block_col)); // cbf update in ihevc_quant_iquant_ssd_flat_scale_mat_neon()
310 block_col++; in ihevc_quant_iquant_ssd_flat_scale_mat_neon()
313 block_col = 0; in ihevc_quant_iquant_ssd_flat_scale_mat_neon()
365 WORD32 block_col = 0; in ihevc_q_iq_ssd_flat_scale_mat_var_rnd_fact_neon() local
590 *(csbf + block_col) = 0; in ihevc_q_iq_ssd_flat_scale_mat_var_rnd_fact_neon()
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encodeframe.c2374 int block_row, block_col; in set_fixed_partitioning() local
2385 for (block_col = 0; block_col < MI_BLOCK_SIZE; block_col += bw) { in set_fixed_partitioning()
2386 int index = block_row * mis + block_col; in set_fixed_partitioning()
/external/libaom/libaom/av1/encoder/
Dencodeframe.c1865 for (int block_col = 0; block_col < cm->seq_params.mib_size; in set_fixed_partitioning() local
1866 block_col += bw) { in set_fixed_partitioning()
1867 const int grid_index = get_mi_grid_idx(mi_params, block_row, block_col); in set_fixed_partitioning()
1868 const int mi_index = get_alloc_mi_idx(mi_params, block_row, block_col); in set_fixed_partitioning()