/external/libaom/libaom/examples/ |
D | lightfield_bitstream_parsing.c | 98 void process_tile_list(const TILE_LIST_INFO *tiles, int num_tiles, in process_tile_list() argument 109 int num_tiles_minus_1 = num_tiles - 1; in process_tile_list() 360 int num_tiles = 0; in main() local 363 if (line[0] == 'F' || num_tiles >= MAX_TILES) { in main() 366 if (num_tiles > 0) { in main() 367 process_tile_list(tiles, num_tiles, tl_pts, frames, frame_sizes, &codec, in main() 372 num_tiles = 0; in main() 377 if (sscanf(line, "%d %d %d %d", &tiles[num_tiles].image_idx, in main() 378 &tiles[num_tiles].reference_idx, &tiles[num_tiles].tile_col, in main() 379 &tiles[num_tiles].tile_row) == 4) { in main() [all …]
|
/external/tensorflow/tensorflow/compiler/xla/client/ |
D | sharding_builder.cc | 49 OpSharding Tile1D(const Shape& tile_shape, int64 num_tiles) { in Tile1D() argument 54 std::vector<int64> dimensions(1, num_tiles); in Tile1D() 58 tile_dimension = CeilOfRatio(static_cast<int64>(tile_dimension), num_tiles); in Tile1D() 59 result.add_tile_assignment_dimensions(num_tiles); in Tile1D() 60 for (int64 i = 0; i < num_tiles; ++i) { in Tile1D()
|
D | sharding_builder.h | 51 OpSharding Tile1D(const Shape& tile_shape, int64 num_tiles);
|
/external/tensorflow/tensorflow/core/kernels/ |
D | deep_conv2d.cc | 67 const int64 num_tiles = row_tiles * col_tiles; in GetDeepConvCost() local 70 return num_tiles * in GetDeepConvCost() 632 const int64 num_tiles, const int64 in_r_start, in operator ()() 639 const int64 coord_stride = num_tiles * args.in_depth; in operator ()() 695 const int64 num_tiles, const int64 in_r_start, in operator ()() 703 const int64 coord_stride = num_tiles * args.in_depth; in operator ()() 708 for (int64 t = 0; t < num_tiles; ++t) { in operator ()() 711 CopyInputTile<T>()(args, transform, num_tiles, in_r, in_c, input, in operator ()() 747 const int64 num_tiles, const int64 in_r, const int64 in_c, in operator ()() 756 num_tiles * args.out_depth * filter_shards_row * filter_shards_col; in operator ()() [all …]
|
/external/mesa3d/src/gallium/drivers/freedreno/ |
D | freedreno_query_hw.c | 237 assert(start->num_tiles == end->num_tiles); in fd_hw_get_query_result() 252 for (i = 0; i < start->num_tiles; i++) { in fd_hw_get_query_result() 309 samp->num_tiles = 0; in fd_hw_sample_init() 345 fd_hw_query_prepare(struct fd_batch *batch, uint32_t num_tiles) in fd_hw_query_prepare() argument 350 fd_resource_resize(batch->query_buf, tile_stride * num_tiles); in fd_hw_query_prepare() 357 samp->num_tiles = num_tiles; in fd_hw_query_prepare()
|
D | freedreno_query_hw.h | 111 uint32_t num_tiles; member 146 void fd_hw_query_prepare(struct fd_batch *batch, uint32_t num_tiles);
|
D | freedreno_context.h | 327 void (*query_prepare)(struct fd_batch *batch, uint32_t num_tiles);
|
/external/libaom/libaom/av1/decoder/ |
D | obu.c | 302 const int num_tiles = pbi->common.tile_rows * pbi->common.tile_cols; in read_tile_group_header() local 304 if (!pbi->common.large_scale_tile && num_tiles > 1) { in read_tile_group_header() 313 if (pbi->common.large_scale_tile || num_tiles == 1 || in read_tile_group_header() 316 *end_tile = num_tiles - 1; in read_tile_group_header() 482 const int num_tiles = cm->tile_cols * cm->tile_rows; in read_and_decode_one_tile_list() local 484 const int end_tile = num_tiles - 1; in read_and_decode_one_tile_list()
|
D | decodeframe.c | 3714 int num_tiles = tile_rows * tile_cols; in alloc_dec_jobs() local 3718 aom_malloc(sizeof(*tile_mt_info->job_mutex) * num_tiles)); in alloc_dec_jobs() 3720 for (int i = 0; i < num_tiles; i++) { in alloc_dec_jobs() 3726 aom_malloc(sizeof(*tile_mt_info->job_queue) * num_tiles)); in alloc_dec_jobs()
|
/external/mesa3d/src/gallium/drivers/etnaviv/ |
D | etnaviv_blt.h | 91 uint32_t num_tiles; member
|
D | etnaviv_blt.c | 192 etna_set_state(stream, 0x14068, op->num_tiles); in emit_blt_inplace() 434 op.num_tiles = src_lev->size / 128; /* TODO: cache modes */ in etna_try_blt_blit()
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_thread_common.h | 71 void vp9_set_row(VP9LfSync *lf_sync, int num_tiles, int row, int is_last_row,
|
D | vp9_thread_common.c | 455 void vp9_set_row(VP9LfSync *lf_sync, int num_tiles, int row, int is_last_row, in vp9_set_row() argument 463 if (num_tiles == lf_sync->num_tiles_done[row]) { in vp9_set_row() 476 (void)num_tiles; in vp9_set_row()
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_sharding.cc | 33 HloSharding HloSharding::Tile1D(const Shape& input_shape, int64 num_tiles) { in Tile1D() argument 35 CHECK_GT(num_tiles, 1); in Tile1D() 36 std::vector<int64> dimensions(1, num_tiles); in Tile1D()
|
D | hlo_sharding.h | 59 static HloSharding Tile1D(const Shape& input_shape, int64 num_tiles);
|
/external/libaom/libaom/av1/encoder/ |
D | ethread.c | 198 int num_tiles, int num_workers) { in assign_tile_to_thread() argument 204 if (tile_id == num_tiles) tile_id = 0; in assign_tile_to_thread()
|