/external/libaom/libaom/av1/encoder/ |
D | ethread.c | 38 for (int row = 0; row < cm->tile_rows; row++) { in update_delta_lf_for_row_mt() 228 const int tile_rows = cm->tile_rows; in switch_tile_and_get_next_job() local 234 for (int tile_row = 0; tile_row < tile_rows; tile_row++) { in switch_tile_and_get_next_job() 357 const int tile_rows = cm->tile_rows; in enc_worker_hook() local 362 for (t = thread_data->start; t < tile_rows * tile_cols; in enc_worker_hook() 590 const int tile_rows = cm->tile_rows; in av1_encode_tiles_mt() local 591 int num_workers = AOMMIN(cpi->oxcf.max_threads, tile_cols * tile_rows); in av1_encode_tiles_mt() 593 if (cpi->tile_data == NULL || cpi->allocated_tiles < tile_cols * tile_rows) in av1_encode_tiles_mt() 624 const int tile_rows = cm->tile_rows; in av1_encode_tiles_row_mt() local 630 if (cpi->tile_data == NULL || cpi->allocated_tiles < tile_cols * tile_rows) { in av1_encode_tiles_row_mt() [all …]
|
D | av1_multi_thread.c | 23 const int tile_rows = cm->tile_rows; in av1_row_mt_mem_alloc() local 26 multi_thread_ctxt->allocated_tile_rows = tile_rows; in av1_row_mt_mem_alloc()
|
D | level.c | 386 const int tile_rows = cm->tile_rows; in get_tile_stats() local 395 for (int tile_row = 0; tile_row < tile_rows; ++tile_row) { in get_tile_stats() 515 const int tile_rows = cm->tile_rows; in av1_update_level_info() local 516 const int tiles = tile_cols * tile_rows; in av1_update_level_info()
|
D | bitstream.c | 2137 for (i = 0; i < cm->tile_rows; i++) { in write_tile_info_max_tile() 2153 if (cm->tile_rows * cm->tile_cols > 1) { in write_tile_info() 2170 if (cm->tile_rows * cm->tile_cols > 1) { in write_ext_tile_info() 3175 tile_col_size -= (4 - tsb) * cm->tile_rows; in remux_tiles() 3181 for (tile_row = 0; tile_row < cm->tile_rows; tile_row++) { in remux_tiles() 3209 const int n_tiles = cm->tile_cols * cm->tile_rows; in remux_tiles() 3416 const int tile_rows = cm->tile_rows; in write_tiles_in_tg_obus() local 3426 : (tile_rows * tile_cols + num_tg_hdrs - 1) / num_tg_hdrs; in write_tiles_in_tg_obus() 3431 const int have_tiles = tile_cols * tile_rows > 1; in write_tiles_in_tg_obus() 3475 for (tile_row = 0; tile_row < tile_rows; tile_row++) { in write_tiles_in_tg_obus() [all …]
|
D | segmentation.c | 183 for (tile_row = 0; tile_row < cm->tile_rows; tile_row++) { in av1_choose_segmap_coding_method()
|
D | encodeframe.c | 4879 cm->tile_rows == 1) { in encode_sb_row() 4941 const int tile_rows = cm->tile_rows; in av1_alloc_tile_data() local 4947 aom_memalign(32, tile_cols * tile_rows * sizeof(*cpi->tile_data))); in av1_alloc_tile_data() 4948 cpi->allocated_tiles = tile_cols * tile_rows; in av1_alloc_tile_data() 4950 for (tile_row = 0; tile_row < tile_rows; ++tile_row) in av1_alloc_tile_data() 4967 const int tile_rows = cm->tile_rows; in av1_init_tile_data() local 4974 for (tile_row = 0; tile_row < tile_rows; ++tile_row) { in av1_init_tile_data() 5065 const int tile_rows = cm->tile_rows; in encode_tiles() local 5068 if (cpi->tile_data == NULL || cpi->allocated_tiles < tile_cols * tile_rows) in encode_tiles() 5073 for (tile_row = 0; tile_row < tile_rows; ++tile_row) { in encode_tiles() [all …]
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
D | tiled_dot_emitter.cc | 115 int64 tile_rows() const { return derived().config().tile_rows(); } in tile_rows() function 126 int64 tile_rows() const { return tile_rows_; } in tile_rows() function in xla::cpu::__anon016ac5180111::GemvConfig 134 tile_rows(), "_", tile_cols(), "_", m(), "_", k(), in GetCacheKey() 139 explicit GemvConfig(string name, PrimitiveType scalar_type, int64 tile_rows, in GemvConfig() argument 143 tile_rows_(tile_rows), in GemvConfig() 225 explicit Config(PrimitiveType scalar_type, int64 tile_rows, int64 tile_cols, in Config() argument 228 /*tile_rows=*/tile_rows, /*tile_cols=*/tile_cols, /*m=*/m, in Config() 243 vsl_(config.scalar_type(), /*vector_size=*/config.tile_rows(), b_, "") { in ColumnMajorMatrixVectorProductEmitter() 244 CHECK(tile_rows() > 0 && IsPowerOfTwo(static_cast<uint64>(tile_rows()))); in ColumnMajorMatrixVectorProductEmitter() 324 int64 row_limit = m() - (m() % tile_rows()); in EmitInnerLoopTiled() [all …]
|
D | tiled_dot_emitter.h | 29 void EmitRowMajorGemv(PrimitiveType scalar_type, tensorflow::int64 tile_rows, 36 void EmitColumnMajorGemv(PrimitiveType scalar_type, tensorflow::int64 tile_rows,
|
/external/libvpx/libvpx/test/ |
D | vp9_encoder_parms_get_to_decoder.cc | 38 int32_t tile_rows; member 85 encoder->Control(VP9E_SET_TILE_ROWS, encode_parms.tile_rows); in PreEncodeFrameHook() 128 EXPECT_EQ(encode_parms.tile_rows, common->log2_tile_rows); in HandleDecodeResult()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | deep_conv2d.cc | 209 const int64 tile_rows = transform->input_shape().rows; in operator ()() local 211 const int64 tile_spatial_size = tile_rows * tile_cols; in operator ()() 384 const int64 tile_rows = transform->input_shape().rows; in operator ()() local 386 const int64 tile_spatial_size = tile_rows * tile_cols; in operator ()() 637 const int64 tile_rows = transform->input_shape().rows; in operator ()() local 646 for (int64 r = 0; r < tile_rows; ++r) { in operator ()() 655 auto* tile = tile_buffer + coord_stride * (r * tile_rows + c); in operator ()() 699 const int64 tile_rows = transform->input_shape().rows; in operator ()() local 701 const int64 tile_spatial_size = tile_rows * tile_cols; in operator ()() 751 const int64 tile_rows = transform->input_shape().rows; in operator ()() local [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_multi_thread.c | 73 const int tile_rows = 1 << cm->log2_tile_rows; in vp9_row_mt_mem_alloc() local 84 multi_thread_ctxt->allocated_tile_rows = tile_rows; in vp9_row_mt_mem_alloc() 112 for (tile_row = 1; tile_row < tile_rows; tile_row++) { in vp9_row_mt_mem_alloc() 121 for (tile_row = 0; tile_row < tile_rows; tile_row++) { in vp9_row_mt_mem_alloc()
|
D | vp9_ethread.c | 43 const int tile_rows = 1 << cm->log2_tile_rows; in enc_worker_hook() local 48 for (t = thread_data->start; t < tile_rows * tile_cols; in enc_worker_hook() 440 const int tile_rows = 1 << cm->log2_tile_rows; in vp9_encode_fp_row_mt() local 447 multi_thread_ctxt->allocated_tile_rows < tile_rows || in vp9_encode_fp_row_mt() 527 const int tile_rows = 1 << cm->log2_tile_rows; in vp9_temporal_filter_row_mt() local 533 multi_thread_ctxt->allocated_tile_rows < tile_rows || in vp9_temporal_filter_row_mt() 600 const int tile_rows = 1 << cm->log2_tile_rows; in vp9_encode_tiles_row_mt() local 606 multi_thread_ctxt->allocated_tile_rows < tile_rows || in vp9_encode_tiles_row_mt()
|
D | vp9_bitstream.c | 1063 const int tile_rows = 1 << cm->log2_tile_rows; in encode_tiles() local 1071 if (cpi->oxcf.mode == REALTIME && cpi->num_workers > 1 && tile_rows == 1 && in encode_tiles() 1076 for (tile_row = 0; tile_row < tile_rows; tile_row++) { in encode_tiles() 1080 if (tile_col < tile_cols - 1 || tile_row < tile_rows - 1) in encode_tiles() 1090 if (tile_col < tile_cols - 1 || tile_row < tile_rows - 1) { in encode_tiles()
|
D | vp9_temporal_filter.c | 961 const int tile_rows = 1 << cm->log2_tile_rows; in temporal_filter_iterate_c() local 965 for (tile_row = 0; tile_row < tile_rows; ++tile_row) { in temporal_filter_iterate_c()
|
D | vp9_encodeframe.c | 5542 const int tile_rows = 1 << cm->log2_tile_rows; in vp9_init_tile_data() local 5549 if (cpi->tile_data == NULL || cpi->allocated_tiles < tile_cols * tile_rows) { in vp9_init_tile_data() 5553 vpx_malloc(tile_cols * tile_rows * sizeof(*cpi->tile_data))); in vp9_init_tile_data() 5554 cpi->allocated_tiles = tile_cols * tile_rows; in vp9_init_tile_data() 5556 for (tile_row = 0; tile_row < tile_rows; ++tile_row) in vp9_init_tile_data() 5576 for (tile_row = 0; tile_row < tile_rows; ++tile_row) { in vp9_init_tile_data() 5643 const int tile_rows = 1 << cm->log2_tile_rows; in encode_tiles() local 5648 for (tile_row = 0; tile_row < tile_rows; ++tile_row) in encode_tiles() 5849 const int tile_rows = 1 << cm->log2_tile_rows; in restore_encode_params() local 5863 for (tile_row = 0; tile_row < tile_rows; ++tile_row) in restore_encode_params()
|
D | vp9_encoder.h | 250 int tile_rows; member
|
/external/libaom/libaom/av1/common/ |
D | tile_common.c | 113 cm->tile_rows = i; in av1_calculate_tile_rows() 119 cm->log2_tile_rows = tile_log2(1, cm->tile_rows); in av1_calculate_tile_rows() 124 assert(row < cm->tile_rows); in av1_tile_set_row() 213 for (int i = 0; i < cm->tile_rows; ++i) { in av1_get_uniform_tile_size()
|
D | alloccommon.c | 130 for (int i = 0; i < cm->tile_rows; ++i) { in av1_alloc_restoration_buffers()
|
/external/libaom/libaom/av1/decoder/ |
D | decodeframe.c | 2571 cm->tile_rows = i; in read_tile_info_max_tile() 2606 if (cm->tile_rows * cm->tile_cols > 1) { in read_tile_info() 2610 if (cm->context_update_tile_id >= cm->tile_rows * cm->tile_cols) { in read_tile_info() 2629 if (cm->tile_cols * cm->tile_rows > 1) { in read_ext_tile_info() 2703 const int tile_rows = cm->tile_rows; in get_ls_tile_buffers() local 2704 const int have_tiles = tile_cols * tile_rows > 1; in get_ls_tile_buffers() 2721 const int dec_tile_row = AOMMIN(pbi->dec_tile_row, tile_rows); in get_ls_tile_buffers() 2724 const int tile_rows_end = single_row ? tile_rows_start + 1 : tile_rows; in get_ls_tile_buffers() 2763 for (int r = 0; r < (is_last ? tile_rows : tile_rows_end); ++r) { in get_ls_tile_buffers() 2775 for (int r = 0; r < tile_rows; ++r) { in get_ls_tile_buffers() [all …]
|
D | obu.c | 302 const int num_tiles = pbi->common.tile_rows * pbi->common.tile_cols; in read_tile_group_header() 354 *is_last_tg = end_tile == cm->tile_rows * cm->tile_cols - 1; in read_one_tile_group_obu() 482 const int num_tiles = cm->tile_cols * cm->tile_rows; in read_and_decode_one_tile_list() 523 pbi->dec_tile_row >= cm->tile_rows || in read_and_decode_one_tile_list()
|
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_decodeframe.c | 1676 int tile_rows, in get_tile_buffers() argument 1680 for (r = 0; r < tile_rows; ++r) { in get_tile_buffers() 1682 const int is_last = (r == tile_rows - 1) && (c == tile_cols - 1); in get_tile_buffers() 1697 const int tile_rows = 1 << cm->log2_tile_rows; in decode_tiles() local 1722 assert(tile_rows <= 4); in decode_tiles() 1735 get_tile_buffers(pbi, data, data_end, tile_cols, tile_rows, tile_buffers); in decode_tiles() 1738 for (tile_row = 0; tile_row < tile_rows; ++tile_row) { in decode_tiles() 1755 for (tile_row = 0; tile_row < tile_rows; ++tile_row) { in decode_tiles() 1829 tile_data = pbi->tile_worker_data + tile_cols * tile_rows - 1; in decode_tiles() 1963 const int tile_rows = 1 << cm->log2_tile_rows; in decode_tiles_mt() local [all …]
|
/external/libvpx/libvpx/vp9/ |
D | vp9_cx_iface.c | 32 unsigned int tile_rows; member 256 RANGE_CHECK(extra_cfg, tile_rows, 0, 2); in validate_config() 557 oxcf->tile_rows = 0; in set_encoder_config() 559 oxcf->tile_rows = extra_cfg->tile_rows; in set_encoder_config() 743 extra_cfg.tile_rows = CAST(VP9E_SET_TILE_ROWS, args); in ctrl_set_tile_rows()
|
/external/ImageMagick/coders/ |
D | pcd.c | 984 const size_t tile_columns,const size_t tile_rows,ExceptionInfo *exception) in WritePCDTile() argument 1053 if ((tile_image->columns != tile_columns) || (tile_image->rows != tile_rows)) in WritePCDTile() 1058 resize_image=ResizeImage(tile_image,tile_columns,tile_rows, in WritePCDTile()
|
D | tiff.c | 2958 tile_rows; in GetTIFFInfo() local 2985 tile_rows=(uint32) tiff_info->tile_geometry.height; in GetTIFFInfo() 2986 TIFFDefaultTileSize(tiff,&tile_columns,&tile_rows); in GetTIFFInfo() 2988 (void) TIFFSetField(tiff,TIFFTAG_TILELENGTH,tile_rows); in GetTIFFInfo() 2990 tiff_info->tile_geometry.height=tile_rows; in GetTIFFInfo() 2997 tile_rows*TIFFScanlineSize(tiff),sizeof(*tiff_info->scanlines)); in GetTIFFInfo() 2999 tile_rows*TIFFTileSize(tiff),sizeof(*tiff_info->scanlines)); in GetTIFFInfo()
|
/external/libaom/libaom/av1/ |
D | av1_cx_iface.c | 41 unsigned int tile_rows; // log2 number of tile rows member 382 RANGE_CHECK_HI(extra_cfg, tile_rows, 6); in validate_config() 762 oxcf->tile_rows = extra_cfg->tile_rows; in set_encoder_config() 981 extra_cfg.tile_rows = CAST(AV1E_SET_TILE_ROWS, args); in ctrl_set_tile_rows()
|