Home
last modified time | relevance | path

Searched refs:block_rows (Results 1 – 13 of 13) sorted by relevance

/external/libjpeg-turbo/
Djdcoefct.c266 int ci, block_row, block_rows; in decompress_data() local
295 block_rows = compptr->v_samp_factor; in decompress_data()
298 block_rows = (int)(compptr->height_in_blocks % compptr->v_samp_factor); in decompress_data()
299 if (block_rows == 0) block_rows = compptr->v_samp_factor; in decompress_data()
304 for (block_row = 0; block_row < block_rows; block_row++) { in decompress_data()
413 int ci, block_row, block_rows, access_rows; in decompress_smooth_data() local
456 block_rows = compptr->v_samp_factor; in decompress_smooth_data()
457 access_rows = block_rows * 2; /* this and next iMCU row */ in decompress_smooth_data()
461 block_rows = (int)(compptr->height_in_blocks % compptr->v_samp_factor); in decompress_smooth_data()
462 if (block_rows == 0) block_rows = compptr->v_samp_factor; in decompress_smooth_data()
[all …]
Djccoefct.c250 int bi, ci, h_samp_factor, block_row, block_rows, ndummy; in compress_first_pass() local
265 block_rows = compptr->v_samp_factor; in compress_first_pass()
268 block_rows = (int)(compptr->height_in_blocks % compptr->v_samp_factor); in compress_first_pass()
269 if (block_rows == 0) block_rows = compptr->v_samp_factor; in compress_first_pass()
280 for (block_row = 0; block_row < block_rows; block_row++) { in compress_first_pass()
304 for (block_row = block_rows; block_row < compptr->v_samp_factor; in compress_first_pass()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_non_greedy_mv.c188 const int block_rows = mi_size_to_block_size(mi_height, mi_rows); in vp9_alloc_motion_field_info() local
194 vp9_alloc_motion_field(motion_field, bsize, block_rows, block_cols); in vp9_alloc_motion_field_info()
206 int block_rows, int block_cols) { in vp9_alloc_motion_field() argument
210 motion_field->block_rows = block_rows; in vp9_alloc_motion_field()
212 motion_field->block_num = block_rows * block_cols; in vp9_alloc_motion_field()
277 assert(brow >= 0 && brow < motion_field->block_rows); in vp9_motion_field_is_mv_set()
284 assert(brow >= 0 && brow < motion_field->block_rows); in vp9_motion_field_get_mv()
308 assert(brow >= 0 && brow < motion_field->block_rows); in vp9_motion_field_mi_set_mv()
Dvp9_non_greedy_mv.h32 int block_rows; member
89 int block_rows, int block_cols);
Dvp9_mcomp.c2072 if (brow >= 0 && brow < motion_field->block_rows && bcol >= 0 && in vp9_prepare_nb_full_mvs()
/external/gemmlowp/public/
Dmap.h67 MatrixMap block(int start_row, int start_col, int block_rows, in block() argument
70 assert(start_row + block_rows <= rows_); in block()
74 return MatrixMap(data(start_row, start_col), block_rows, block_cols, in block()
/external/tensorflow/tensorflow/lite/experimental/ruy/
Dblock_map.cc257 const int block_rows = std::min(1 << block_size_log2, rows); in GetCacheLocalityScore() local
260 (lhs_scalar_size * block_rows + rhs_scalar_size * block_cols) * depth; in GetCacheLocalityScore()
289 const int block_rows = std::min(1 << block_size_log2, rows); in GetKernelAmortizationScore() local
292 floor_log2(block_rows * block_cols) - kernel_rows_log2 - kernel_cols_log2; in GetKernelAmortizationScore()
/external/tensorflow/tensorflow/core/util/
Dgpu_launch_config.h259 int block_rows = std::max(kThreadsPerBlock / block_cols, 1); in GetGpu2DLaunchConfig() local
267 config.thread_per_block = dim3(block_cols, block_rows, 1); in GetGpu2DLaunchConfig()
272 grid_x, std::min(max_blocks / grid_x, std::max(ydim / block_rows, 1)), 1); in GetGpu2DLaunchConfig()
/external/gemmlowp/internal/
Dmulti_thread_gemm.h700 int block_rows = next_start_row - start_row; in MultiThreadGemm() local
701 auto lhs_block = lhs.block(start_row, 0, block_rows, depth); in MultiThreadGemm()
709 MatrixBlockBounds(start_row, c, block_rows, cs), in MultiThreadGemm()
/external/python/pybind11/tests/
Dtest_eigen.cpp168 …igen::Ref<const Eigen::MatrixXd> &x, int start_row, int start_col, int block_rows, int block_cols)… in TEST_SUBMODULE() argument
169 return x.block(start_row, start_col, block_rows, block_cols); in TEST_SUBMODULE()
/external/libaom/libaom/av1/common/
Dblockd.h1215 const int block_rows = (xd->mb_to_bottom_edge >= 0) in av1_get_block_dimensions() local
1225 assert(block_height >= block_rows); in av1_get_block_dimensions()
1235 (block_rows >> pd->subsampling_y) + 2 * is_chroma_sub8_y; in av1_get_block_dimensions()
/external/libaom/libaom/av1/encoder/
Drdopt_utils.h306 const int block_rows = in get_txb_dimensions() local
309 clamp(block_rows - (blk_row << MI_SIZE_LOG2), 0, txb_height); in get_txb_dimensions()
/external/tensorflow/tensorflow/core/kernels/
Deigen_spatial_convolutions_test.cc1392 Index block_rows, Index block_cols) { in PackRhsHelper() argument
1557 (patch_size > block_rows) in PackRhsHelper()
1562 Index depth = std::min(block_rows, patch_size - depth_offset); in PackRhsHelper()
1588 Index block_rows, Index block_cols) { in PackLhsHelper() argument
1592 eigen_assert(block_rows <= filter_count); in PackLhsHelper()
1727 Index rows = std::min(block_rows, max_row - row_offset); in PackLhsHelper()