/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 | 71 tile_x = tile_size[0] 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 119 tile_x = draw_x & tile_mask_x; in emit_depthbuffer() 137 tile_x &= ~7; in emit_depthbuffer() 142 dw3 = ((srb->Base.Base.Width + tile_x - 1) << 4) | 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 161 tile_x = draw_x & tile_mask_x; in emit_depthbuffer() 179 tile_x &= ~7; in emit_depthbuffer() 201 OUT_BATCH((((drb->Base.Base.Width + tile_x) - 1) << 4) | 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 398 tile_x = draw_x & tile_mask_x; in emit_depthbuffer() 417 tile_x &= ~7; in emit_depthbuffer() 430 OUT_BATCH(((stencil_irb->Base.Base.Width + tile_x - 1) << 6) | 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 456 tile_x = draw_x & tile_mask_x; in emit_depthbuffer() 474 tile_x &= ~7; in emit_depthbuffer() 494 (((depth_irb->Base.Base.Width + tile_x) - 1) << 6) | 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() 177 assert(tile_x % 4 == 0); in gen7_blorp_emit_surface_state() 179 surf->ss5.x_offset = tile_x / 4; in gen7_blorp_emit_surface_state() 589 uint32_t tile_x = draw_x & tile_mask_x; in gen7_blorp_emit_depth_stencil_config() local 611 tile_x &= ~7; in gen7_blorp_emit_depth_stencil_config() 628 OUT_BATCH((params->depth.width + tile_x - 1) << 4 | in gen7_blorp_emit_depth_stencil_config() 631 OUT_BATCH(tile_x | 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() 461 assert(tile_x % 4 == 0); in gen6_blorp_emit_surface_state() 463 surf[5] = ((tile_x / 4) << BRW_SURFACE_X_OFFSET_SHIFT | in gen6_blorp_emit_surface_state() 841 uint32_t tile_x = draw_x & tile_mask_x; in gen6_blorp_emit_depth_stencil_config() local 863 tile_x &= ~7; in gen6_blorp_emit_depth_stencil_config() 884 (params->depth.width + tile_x - 1) << 6 | in gen6_blorp_emit_depth_stencil_config() 887 OUT_BATCH(tile_x | in gen6_blorp_emit_depth_stencil_config()
|
D | brw_blorp.cpp | 125 brw_blorp_surface_info::compute_tile_offsets(uint32_t *tile_x, in compute_tile_offsets() argument 134 *tile_x = x_offset & mask_x; in compute_tile_offsets()
|
D | intel_span.c | 75 uint32_t tile_x = x / tile_width; in intel_offset_S8() local 83 + tile_x * tile_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() 559 assert(tile_x % 4 == 0); in gen7_update_renderbuffer_surface() 561 surf->ss5.x_offset = tile_x / 4; 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 119 tile_x = draw_x & tile_mask_x; in emit_depthbuffer() 137 tile_x &= ~7; in emit_depthbuffer() 142 dw3 = ((srb->Base.Base.Width + tile_x - 1) << 4) | 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 161 tile_x = draw_x & tile_mask_x; in emit_depthbuffer() 179 tile_x &= ~7; in emit_depthbuffer() 201 OUT_BATCH((((drb->Base.Base.Width + tile_x) - 1) << 4) | 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 398 tile_x = draw_x & tile_mask_x; in emit_depthbuffer() 417 tile_x &= ~7; in emit_depthbuffer() 430 OUT_BATCH(((stencil_irb->Base.Base.Width + tile_x - 1) << 6) | 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 456 tile_x = draw_x & tile_mask_x; in emit_depthbuffer() 474 tile_x &= ~7; in emit_depthbuffer() 494 (((depth_irb->Base.Base.Width + tile_x) - 1) << 6) | 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() 177 assert(tile_x % 4 == 0); in gen7_blorp_emit_surface_state() 179 surf->ss5.x_offset = tile_x / 4; in gen7_blorp_emit_surface_state() 589 uint32_t tile_x = draw_x & tile_mask_x; in gen7_blorp_emit_depth_stencil_config() local 611 tile_x &= ~7; in gen7_blorp_emit_depth_stencil_config() 628 OUT_BATCH((params->depth.width + tile_x - 1) << 4 | in gen7_blorp_emit_depth_stencil_config() 631 OUT_BATCH(tile_x | 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() 461 assert(tile_x % 4 == 0); in gen6_blorp_emit_surface_state() 463 surf[5] = ((tile_x / 4) << BRW_SURFACE_X_OFFSET_SHIFT | in gen6_blorp_emit_surface_state() 841 uint32_t tile_x = draw_x & tile_mask_x; in gen6_blorp_emit_depth_stencil_config() local 863 tile_x &= ~7; in gen6_blorp_emit_depth_stencil_config() 884 (params->depth.width + tile_x - 1) << 6 | in gen6_blorp_emit_depth_stencil_config() 887 OUT_BATCH(tile_x | in gen6_blorp_emit_depth_stencil_config()
|
D | brw_blorp.cpp | 125 brw_blorp_surface_info::compute_tile_offsets(uint32_t *tile_x, in compute_tile_offsets() argument 134 *tile_x = x_offset & mask_x; in compute_tile_offsets()
|
D | intel_span.c | 75 uint32_t tile_x = x / tile_width; in intel_offset_S8() local 83 + tile_x * tile_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() 559 assert(tile_x % 4 == 0); in gen7_update_renderbuffer_surface() 561 surf->ss5.x_offset = tile_x / 4; in gen7_update_renderbuffer_surface()
|
/external/webp/src/dsp/ |
D | lossless.c | 522 int tile_x, int tile_y, int bits, in GetBestPredictorForTile() argument 526 const int col_start = tile_x << bits; in GetBestPredictorForTile() 578 int tile_x, int tile_y, int bits, int mode, in CopyTileWithPrediction() argument 581 const int col_start = tile_x << bits; in CopyTileWithPrediction() 628 int tile_x; in VP8LResidualImage() local 635 for (tile_x = 0; tile_x < tiles_per_row; ++tile_x) { in VP8LResidualImage() 638 const int tile_x_offset = tile_x * max_tile_size; in VP8LResidualImage() 643 pred = GetBestPredictorForTile(width, height, tile_x, tile_y, bits, histo, in VP8LResidualImage() 645 image[tile_y * tiles_per_row + tile_x] = 0xff000000u | (pred << 8); in VP8LResidualImage() 646 CopyTileWithPrediction(width, height, tile_x, tile_y, bits, pred, 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 526 const int col_start = tile_x << bits; in GetBestPredictorForTile() 578 int tile_x, int tile_y, int bits, int mode, in CopyTileWithPrediction() argument 581 const int col_start = tile_x << bits; in CopyTileWithPrediction() 628 int tile_x; in VP8LResidualImage() local 635 for (tile_x = 0; tile_x < tiles_per_row; ++tile_x) { in VP8LResidualImage() 638 const int tile_x_offset = tile_x * max_tile_size; in VP8LResidualImage() 643 pred = GetBestPredictorForTile(width, height, tile_x, tile_y, bits, histo, in VP8LResidualImage() 645 image[tile_y * tiles_per_row + tile_x] = 0xff000000u | (pred << 8); in VP8LResidualImage() 646 CopyTileWithPrediction(width, height, tile_x, tile_y, bits, pred, in VP8LResidualImage() [all …]
|
/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 { 551 *tile_x = 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); 736 tile_x = rescale(tile_x, last_row_count_x(), count_x()); 739 tile_x = rescale(tile_x, count_x(), last_row_count_x()); 742 return tile_xy_to_index(tile_x, tile_y); 746 int tile_x, tile_y; [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 { 598 *tile_x = 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); 783 tile_x = rescale(tile_x, last_row_count_x(), count_x()); 786 tile_x = rescale(tile_x, count_x(), last_row_count_x()); 789 return tile_xy_to_index(tile_x, tile_y); 793 int tile_x, tile_y; [all …]
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
D | intel_span.c | 75 uint32_t tile_x = x / tile_width; in intel_offset_S8() local 83 + tile_x * tile_size in intel_offset_S8()
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/ |
D | intel_span.c | 75 uint32_t tile_x = x / tile_width; in intel_offset_S8() local 83 + tile_x * tile_size in intel_offset_S8()
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | intel_span.c | 75 uint32_t tile_x = x / tile_width; in intel_offset_S8() local 83 + tile_x * tile_size in intel_offset_S8()
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/ |
D | intel_span.c | 75 uint32_t tile_x = x / tile_width; in intel_offset_S8() local 83 + tile_x * tile_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')] 147 viewport_cols = int(math.ceil(viewport_x * 1.0 / tile_x))
|