/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 …]
|
D | bench_pictures.cfg | 72 tile_y = tile_size[1] 81 RecordGridConfig( tile_x, tile_y, scale=str(scale)), 84 TiledBitmapConfig(tile_x, tile_y, scale=str(scale)), 85 TileRTreeConfig( tile_x, tile_y, scale=str(scale)), 86 TileGridConfig( tile_x, tile_y, scale=str(scale)), 98 configs.append(MultiThreadTileConfig(num_cores, tile_x, tile_y,
|
/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/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/webp/src/dsp/ |
D | lossless.c | 522 int tile_x, int tile_y, int bits, in GetBestPredictorForTile() argument 527 const int row_start = tile_y << bits; in GetBestPredictorForTile() 578 int tile_x, int tile_y, int bits, int mode, in CopyTileWithPrediction() argument 582 const int row_start = tile_y << bits; in CopyTileWithPrediction() 621 int tile_y; in VP8LResidualImage() local 624 for (tile_y = 0; tile_y < tiles_per_col; ++tile_y) { in VP8LResidualImage() 625 const int tile_y_offset = tile_y * max_tile_size; in VP8LResidualImage() 627 (tile_y < tiles_per_col - 1) ? max_tile_size : height - tile_y_offset; in VP8LResidualImage() 629 if (tile_y > 0) { in VP8LResidualImage() 643 pred = GetBestPredictorForTile(width, height, tile_x, tile_y, bits, histo, in VP8LResidualImage() [all …]
|
/external/chromium_org/third_party/libwebp/dsp/ |
D | lossless.c | 522 int tile_x, int tile_y, int bits, in GetBestPredictorForTile() argument 527 const int row_start = tile_y << bits; in GetBestPredictorForTile() 578 int tile_x, int tile_y, int bits, int mode, in CopyTileWithPrediction() argument 582 const int row_start = tile_y << bits; in CopyTileWithPrediction() 621 int tile_y; in VP8LResidualImage() local 624 for (tile_y = 0; tile_y < tiles_per_col; ++tile_y) { in VP8LResidualImage() 625 const int tile_y_offset = tile_y * max_tile_size; in VP8LResidualImage() 627 (tile_y < tiles_per_col - 1) ? max_tile_size : height - tile_y_offset; in VP8LResidualImage() 629 if (tile_y > 0) { in VP8LResidualImage() 643 pred = GetBestPredictorForTile(width, height, tile_x, tile_y, bits, histo, in VP8LResidualImage() [all …]
|
/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/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/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/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/chromium_org/chrome/browser/ui/cocoa/ |
D | tabpose_window.mm | 550 void index_to_tile_xy(int index, int* tile_x, int* tile_y) const { 552 *tile_y = index / count_x(); 554 int tile_xy_to_index(int tile_x, int tile_y) const { 555 return tile_y * count_x() + tile_x; 731 int tile_x, tile_y; 732 index_to_tile_xy(selected_index(), &tile_x, &tile_y); 733 tile_y -= 1; 734 if (tile_y == count_y() - 2) { 737 } else if (tile_y < 0) { 740 tile_y = count_y() - 1; [all …]
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | tabpose_window.mm | 597 void index_to_tile_xy(int index, int* tile_x, int* tile_y) const { 599 *tile_y = index / count_x(); 601 int tile_xy_to_index(int tile_x, int tile_y) const { 602 return tile_y * count_x() + tile_x; 778 int tile_x, tile_y; 779 index_to_tile_xy(selected_index(), &tile_x, &tile_y); 780 tile_y -= 1; 781 if (tile_y == count_y() - 2) { 784 } else if (tile_y < 0) { 787 tile_y = count_y() - 1; [all …]
|
/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))
|