Searched refs:tiles_y (Results 1 – 10 of 10) sorted by relevance
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_linear.c | 48 for (y = 0; y < t->tiles_y; y++) { in pipe_linear_to_tile() 70 for (y = 0; y < t->tiles_y; y++) { in pipe_linear_from_tile() 87 unsigned tiles_x, unsigned tiles_y) in pipe_linear_fill_info() argument 98 t->tiles_y = tiles_y; in pipe_linear_fill_info() 100 t->size = t->tiles_x * t->tiles_y * t->tile.size; in pipe_linear_fill_info()
|
D | u_linear.h | 59 unsigned tiles_y; member 90 unsigned tiles_x, unsigned tiles_y); 100 if (t->size < t->stride * t->rows * t->tiles_y) in pipe_linear_check_tile()
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_scene.h | 186 unsigned tiles_x, tiles_y; member 325 assert(y < scene->tiles_y); in lp_scene_bin_command() 380 for (j = 0; j < scene->tiles_y; j++) { in lp_scene_bin_everywhere() 393 return scene->tiles_x * scene->tiles_y; in lp_scene_get_num_bins()
|
D | lp_scene.c | 119 for (y = 0; y < scene->tiles_y; y++) { in lp_scene_is_empty() 256 for (j = 0; j < scene->tiles_y; j++) { in lp_scene_end_rasterization() 542 if (scene->curr_y >= scene->tiles_y) { in next_bin() 602 scene->tiles_y = align(fb->height, TILE_SIZE) / TILE_SIZE; in lp_scene_begin_binning() 604 assert(scene->tiles_y <= TILES_Y); in lp_scene_begin_binning()
|
D | lp_rast_debug.c | 357 for (y = 0; y < scene->tiles_y; y++) { in lp_debug_draw_bins_by_coverage() 413 for (y = 0; y < scene->tiles_y; y++) { in lp_debug_draw_bins_by_cmd_length() 430 for (y = 0; y < scene->tiles_y; y++) { in lp_debug_bins()
|
D | lp_rast_priv.h | 159 assert(y < task->scene->tiles_y * TILE_SIZE); in lp_rast_get_color_block_pointer() 199 assert(y < task->scene->tiles_y * TILE_SIZE); in lp_rast_get_depth_block_pointer()
|
D | lp_rast.c | 440 assert(y < scene->tiles_y * TILE_SIZE); in lp_rast_shade_quads_mask_sample()
|
D | lp_setup.c | 1577 !(setup->scene->tiles_x | setup->scene->tiles_y)) { in lp_setup_end_query()
|
/external/tensorflow/tensorflow/lite/delegates/gpu/common/tasks/ |
D | winograd.cc | 233 int tiles_y = DivideRoundUp(new_height, 4); in GetGridSize() local 234 return int3(tiles_x, tiles_y, src_[0]->Slices()); in GetGridSize() 243 int tiles_y = DivideRoundUp(new_height, 4); in BindArguments() local 245 RETURN_IF_ERROR(args->SetInt("tiles_y", tiles_y)); in BindArguments() 496 const int tiles_y = DivideRoundUp( in BindArguments() local 498 const int tiles_total = tiles_x * tiles_y; in BindArguments() 724 const int tiles_y = DivideRoundUp(dst_[0]->Height(), 4); in GetGridSize() local 725 const int grid_x = tiles_x * tiles_y * dst_[0]->Batch(); in GetGridSize()
|
/external/tensorflow/tensorflow/lite/delegates/gpu/common/selectors/ |
D | operation_selector.cc | 53 const int tiles_y = DivideRoundUp(dst_shape.h, 4); in IsRecommendedForWinograd4x4To6x6() local 54 const int total_tiles = tiles_x * tiles_y; in IsRecommendedForWinograd4x4To6x6() 94 const int tiles_y = DivideRoundUp(output_shape.h, 4); in WinogradFromNode() local 95 const BHWC src_transformed_shape{input_shape.b, 36, tiles_x * tiles_y, in WinogradFromNode() 97 const BHWC dst_transformed_shape{input_shape.b, 36, tiles_x * tiles_y, in WinogradFromNode()
|