/external/skia/tools/ |
D | bench_pictures_cfg_helper.py | 16 def TileArgs(tile_x, tile_y, timeIndividualTiles=True): argument 17 config = {'mode': ['tile', str(tile_x), str(tile_y)]} 31 def TiledBitmapConfig(tile_x, tile_y, timeIndividualTiles=True, **kwargs): argument 32 return BitmapConfig(**dict(TileArgs(tile_x, tile_y, 36 def TiledGPUConfig(tile_x, tile_y, **kwargs): argument 37 return GPUConfig(**dict(TileArgs(tile_x, tile_y).items() + kwargs.items())) 40 def TiledConfig(tile_x, tile_y, timeIndividualTiles=True, **kwargs): argument 41 return Config(**dict(TileArgs(tile_x, tile_y, 63 def CopyTilesConfig(tile_x, tile_y, **kwargs): argument 64 return BitmapConfig(mode=['copyTile', str(tile_x), str(tile_y)], **kwargs) [all …]
|
/external/chromium_org/third_party/skia/tools/ |
D | bench_pictures_cfg_helper.py | 16 def TileArgs(tile_x, tile_y, timeIndividualTiles=True): argument 17 config = {'mode': ['tile', str(tile_x), str(tile_y)]} 31 def TiledBitmapConfig(tile_x, tile_y, timeIndividualTiles=True, **kwargs): argument 32 return BitmapConfig(**dict(TileArgs(tile_x, tile_y, 36 def TiledGPUConfig(tile_x, tile_y, **kwargs): argument 37 return GPUConfig(**dict(TileArgs(tile_x, tile_y).items() + kwargs.items())) 40 def TiledConfig(tile_x, tile_y, timeIndividualTiles=True, **kwargs): argument 41 return Config(**dict(TileArgs(tile_x, tile_y, 63 def CopyTilesConfig(tile_x, tile_y, **kwargs): argument 64 return BitmapConfig(mode=['copyTile', str(tile_x), str(tile_y)], **kwargs) [all …]
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
D | gen7_misc_state.c | 109 uint32_t tile_x = 0, tile_y = 0; in emit_depthbuffer() local 120 tile_y = draw_y & tile_mask_y; in emit_depthbuffer() 138 tile_y &= ~7; in emit_depthbuffer() 143 ((srb->Base.Base.Height + tile_y - 1) << 18); in emit_depthbuffer() 152 OUT_BATCH(tile_x | (tile_y << 16)); in emit_depthbuffer() 157 uint32_t tile_x, tile_y, offset; in emit_depthbuffer() local 162 tile_y = draw_y & tile_mask_y; in emit_depthbuffer() 180 tile_y &= ~7; in emit_depthbuffer() 202 (((drb->Base.Base.Height + tile_y) - 1) << 18)); in emit_depthbuffer() 204 OUT_BATCH(tile_x | (tile_y << 16)); in emit_depthbuffer()
|
D | brw_misc_state.c | 372 uint32_t tile_x, tile_y; in emit_depthbuffer() local 399 tile_y = draw_y & tile_mask_y; in emit_depthbuffer() 418 tile_y &= ~7; in emit_depthbuffer() 431 (stencil_irb->Base.Base.Height + tile_y - 1) << 19); in emit_depthbuffer() 435 OUT_BATCH(tile_x | (tile_y << 16)); in emit_depthbuffer() 437 assert(tile_x == 0 && tile_y == 0); in emit_depthbuffer() 446 uint32_t tile_x, tile_y, offset; in emit_depthbuffer() local 457 tile_y = draw_y & tile_mask_y; in emit_depthbuffer() 475 tile_y &= ~7; in emit_depthbuffer() 495 (((depth_irb->Base.Base.Height + tile_y) - 1) << 19)); in emit_depthbuffer() [all …]
|
D | gen7_blorp.cpp | 153 uint32_t tile_x, tile_y; in gen7_blorp_emit_surface_state() local 171 surf->ss1.base_addr = surface->compute_tile_offsets(&tile_x, &tile_y); in gen7_blorp_emit_surface_state() 178 assert(tile_y % 2 == 0); in gen7_blorp_emit_surface_state() 180 surf->ss5.y_offset = tile_y / 2; in gen7_blorp_emit_surface_state() 590 uint32_t tile_y = draw_y & tile_mask_y; in gen7_blorp_emit_depth_stencil_config() local 612 tile_y &= ~7; in gen7_blorp_emit_depth_stencil_config() 629 (params->depth.height + tile_y - 1) << 18); in gen7_blorp_emit_depth_stencil_config() 632 tile_y << 16); in gen7_blorp_emit_depth_stencil_config()
|
D | gen6_blorp.cpp | 427 uint32_t tile_x, tile_y; in gen6_blorp_emit_surface_state() local 439 surf[1] = (surface->compute_tile_offsets(&tile_x, &tile_y) + in gen6_blorp_emit_surface_state() 462 assert(tile_y % 2 == 0); in gen6_blorp_emit_surface_state() 464 (tile_y / 2) << BRW_SURFACE_Y_OFFSET_SHIFT | in gen6_blorp_emit_surface_state() 842 uint32_t tile_y = draw_y & tile_mask_y; in gen6_blorp_emit_depth_stencil_config() local 864 tile_y &= ~7; in gen6_blorp_emit_depth_stencil_config() 885 (params->depth.height + tile_y - 1) << 19); in gen6_blorp_emit_depth_stencil_config() 888 tile_y << 16); in gen6_blorp_emit_depth_stencil_config()
|
D | brw_blorp.cpp | 126 uint32_t *tile_y) const in compute_tile_offsets() 135 *tile_y = y_offset & mask_y; in compute_tile_offsets()
|
D | intel_span.c | 76 uint32_t tile_y = y / tile_height; in intel_offset_S8() local 82 uintptr_t u = tile_y * row_size in intel_offset_S8()
|
D | gen7_wm_surface_state.c | 510 uint32_t tile_x, tile_y; in gen7_update_renderbuffer_surface() local 552 surf->ss1.base_addr = intel_renderbuffer_tile_offsets(irb, &tile_x, &tile_y); in gen7_update_renderbuffer_surface() 560 assert(tile_y % 2 == 0); in gen7_update_renderbuffer_surface() 562 surf->ss5.y_offset = tile_y / 2; in gen7_update_renderbuffer_surface()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | gen7_misc_state.c | 109 uint32_t tile_x = 0, tile_y = 0; in emit_depthbuffer() local 120 tile_y = draw_y & tile_mask_y; in emit_depthbuffer() 138 tile_y &= ~7; in emit_depthbuffer() 143 ((srb->Base.Base.Height + tile_y - 1) << 18); in emit_depthbuffer() 152 OUT_BATCH(tile_x | (tile_y << 16)); in emit_depthbuffer() 157 uint32_t tile_x, tile_y, offset; in emit_depthbuffer() local 162 tile_y = draw_y & tile_mask_y; in emit_depthbuffer() 180 tile_y &= ~7; in emit_depthbuffer() 202 (((drb->Base.Base.Height + tile_y) - 1) << 18)); in emit_depthbuffer() 204 OUT_BATCH(tile_x | (tile_y << 16)); in emit_depthbuffer()
|
D | brw_misc_state.c | 372 uint32_t tile_x, tile_y; in emit_depthbuffer() local 399 tile_y = draw_y & tile_mask_y; in emit_depthbuffer() 418 tile_y &= ~7; in emit_depthbuffer() 431 (stencil_irb->Base.Base.Height + tile_y - 1) << 19); in emit_depthbuffer() 435 OUT_BATCH(tile_x | (tile_y << 16)); in emit_depthbuffer() 437 assert(tile_x == 0 && tile_y == 0); in emit_depthbuffer() 446 uint32_t tile_x, tile_y, offset; in emit_depthbuffer() local 457 tile_y = draw_y & tile_mask_y; in emit_depthbuffer() 475 tile_y &= ~7; in emit_depthbuffer() 495 (((depth_irb->Base.Base.Height + tile_y) - 1) << 19)); in emit_depthbuffer() [all …]
|
D | gen7_blorp.cpp | 153 uint32_t tile_x, tile_y; in gen7_blorp_emit_surface_state() local 171 surf->ss1.base_addr = surface->compute_tile_offsets(&tile_x, &tile_y); in gen7_blorp_emit_surface_state() 178 assert(tile_y % 2 == 0); in gen7_blorp_emit_surface_state() 180 surf->ss5.y_offset = tile_y / 2; in gen7_blorp_emit_surface_state() 590 uint32_t tile_y = draw_y & tile_mask_y; in gen7_blorp_emit_depth_stencil_config() local 612 tile_y &= ~7; in gen7_blorp_emit_depth_stencil_config() 629 (params->depth.height + tile_y - 1) << 18); in gen7_blorp_emit_depth_stencil_config() 632 tile_y << 16); in gen7_blorp_emit_depth_stencil_config()
|
D | gen6_blorp.cpp | 427 uint32_t tile_x, tile_y; in gen6_blorp_emit_surface_state() local 439 surf[1] = (surface->compute_tile_offsets(&tile_x, &tile_y) + in gen6_blorp_emit_surface_state() 462 assert(tile_y % 2 == 0); in gen6_blorp_emit_surface_state() 464 (tile_y / 2) << BRW_SURFACE_Y_OFFSET_SHIFT | in gen6_blorp_emit_surface_state() 842 uint32_t tile_y = draw_y & tile_mask_y; in gen6_blorp_emit_depth_stencil_config() local 864 tile_y &= ~7; in gen6_blorp_emit_depth_stencil_config() 885 (params->depth.height + tile_y - 1) << 19); in gen6_blorp_emit_depth_stencil_config() 888 tile_y << 16); in gen6_blorp_emit_depth_stencil_config()
|
D | brw_blorp.cpp | 126 uint32_t *tile_y) const in compute_tile_offsets() 135 *tile_y = y_offset & mask_y; in compute_tile_offsets()
|
D | intel_span.c | 76 uint32_t tile_y = y / tile_height; in intel_offset_S8() local 82 uintptr_t u = tile_y * row_size in intel_offset_S8()
|
D | gen7_wm_surface_state.c | 510 uint32_t tile_x, tile_y; in gen7_update_renderbuffer_surface() local 552 surf->ss1.base_addr = intel_renderbuffer_tile_offsets(irb, &tile_x, &tile_y); in gen7_update_renderbuffer_surface() 560 assert(tile_y % 2 == 0); in gen7_update_renderbuffer_surface() 562 surf->ss5.y_offset = tile_y / 2; in gen7_update_renderbuffer_surface()
|
/external/chromium_org/third_party/libwebp/dsp/ |
D | lossless.c | 603 int tile_x, int tile_y, int bits, in GetBestPredictorForTile() argument 608 const int row_start = tile_y << bits; in GetBestPredictorForTile() 652 int tile_x, int tile_y, int bits, int mode, in CopyTileWithPrediction() argument 656 const int row_start = tile_y << bits; in CopyTileWithPrediction() 693 int tile_y; in VP8LResidualImage() local 696 for (tile_y = 0; tile_y < tiles_per_col; ++tile_y) { in VP8LResidualImage() 697 const int tile_y_offset = tile_y * max_tile_size; in VP8LResidualImage() 699 (tile_y < tiles_per_col - 1) ? max_tile_size : height - tile_y_offset; in VP8LResidualImage() 701 if (tile_y > 0) { in VP8LResidualImage() 715 pred = GetBestPredictorForTile(width, height, tile_x, tile_y, bits, in VP8LResidualImage() [all …]
|
/external/webp/src/dsp/ |
D | lossless.c | 594 int tile_x, int tile_y, int bits, in GetBestPredictorForTile() argument 599 const int row_start = tile_y << bits; in GetBestPredictorForTile() 643 int tile_x, int tile_y, int bits, int mode, in CopyTileWithPrediction() argument 647 const int row_start = tile_y << bits; in CopyTileWithPrediction() 684 int tile_y; in VP8LResidualImage() local 687 for (tile_y = 0; tile_y < tiles_per_col; ++tile_y) { in VP8LResidualImage() 688 const int tile_y_offset = tile_y * max_tile_size; in VP8LResidualImage() 690 (tile_y < tiles_per_col - 1) ? max_tile_size : height - tile_y_offset; in VP8LResidualImage() 692 if (tile_y > 0) { in VP8LResidualImage() 706 pred = GetBestPredictorForTile(width, height, tile_x, tile_y, bits, in VP8LResidualImage() [all …]
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/ |
D | intel_span.c | 76 uint32_t tile_y = y / tile_height; in intel_offset_S8() local 82 uintptr_t u = tile_y * row_size in intel_offset_S8()
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/ |
D | intel_span.c | 76 uint32_t tile_y = y / tile_height; in intel_offset_S8() local 82 uintptr_t u = tile_y * row_size in intel_offset_S8()
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
D | intel_span.c | 76 uint32_t tile_y = y / tile_height; in intel_offset_S8() local 82 uintptr_t u = tile_y * row_size in intel_offset_S8()
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | intel_span.c | 76 uint32_t tile_y = y / tile_height; in intel_offset_S8() local 82 uintptr_t u = tile_y * row_size in intel_offset_S8()
|
/external/skia/bench/ |
D | tile_analyze.py | 145 [tile_x, tile_y] = [int(i) for i in tile_size.split('x')] 148 viewport_rows = int(math.ceil(viewport_y * 1.0 / tile_y))
|
/external/chromium_org/third_party/skia/bench/ |
D | tile_analyze.py | 145 [tile_x, tile_y] = [int(i) for i in tile_size.split('x')] 148 viewport_rows = int(math.ceil(viewport_y * 1.0 / tile_y))
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
D | lp_rast.c | 340 const unsigned tile_x = task->x, tile_y = task->y; in lp_rast_shade_tile() local 367 tile_x + x, tile_y + y); in lp_rast_shade_tile() 370 depth = lp_rast_get_depth_block_pointer(task, tile_x + x, tile_y + y); in lp_rast_shade_tile() 375 tile_x + x, tile_y + y, in lp_rast_shade_tile()
|