/external/webp/src/enc/ |
D | predictor_enc.c | 299 int tile_x, int tile_y, int bits, in GetBestPredictorForTile() argument 307 const int start_x = tile_x << bits; in GetBestPredictorForTile() 322 const int left_mode = (tile_x > 0) ? in GetBestPredictorForTile() 323 (modes[tile_y * tiles_per_row + tile_x - 1] >> 8) & 0xff : 0xff; in GetBestPredictorForTile() 325 (modes[(tile_y - 1) * tiles_per_row + tile_x] >> 8) & 0xff : 0xff; in GetBestPredictorForTile() 492 int tile_x; in VP8LResidualImage() local 493 for (tile_x = 0; tile_x < tiles_per_row; ++tile_x) { in VP8LResidualImage() 494 const int pred = GetBestPredictorForTile(width, height, tile_x, tile_y, in VP8LResidualImage() 497 image[tile_y * tiles_per_row + tile_x] = ARGB_BLACK | (pred << 8); in VP8LResidualImage() 676 int tile_x, int tile_y, int bits, in GetBestColorTransformForTile() argument [all …]
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_misc_state.c | 147 uint32_t tile_x = irb->draw_x & tile_mask_x; in rebase_depth_stencil() local 157 bool rebase = tile_x & 7 || tile_y & 7; in rebase_depth_stencil() 160 rebase |= (!devinfo->has_surface_tile_offset && (tile_x || tile_y)); in rebase_depth_stencil() 165 irb->mt_level, tile_x, tile_y); in rebase_depth_stencil() 169 brw->depthstencil.tile_x = 0; in rebase_depth_stencil() 180 WARN_ONCE((tile_x & 7) || (tile_y & 7), in rebase_depth_stencil() 183 tile_x, tile_y); in rebase_depth_stencil() 184 tile_x &= ~7; in rebase_depth_stencil() 187 brw->depthstencil.tile_x = tile_x; in rebase_depth_stencil() 215 brw->depthstencil.tile_x = 0; in brw_workaround_depthstencil_alignment() [all …]
|
D | intel_fbo.h | 208 uint32_t *tile_x, in intel_renderbuffer_get_tile_offsets() argument 212 *tile_x = 0; in intel_renderbuffer_get_tile_offsets() 218 tile_x, tile_y); in intel_renderbuffer_get_tile_offsets()
|
D | brw_wm_surface_state.c | 83 uint32_t *tile_x, uint32_t *tile_y, in get_isl_surf() argument 108 assert(*tile_x == 0 && *tile_y == 0); in get_isl_surf() 112 tile_x, tile_y); in get_isl_surf() 145 uint32_t tile_x = mt->level[0].level_x; in brw_emit_surface_state() local 151 get_isl_surf(brw, mt, target, &view, &tile_x, &tile_y, &offset, &surf); in brw_emit_surface_state() 187 .x_offset_sa = tile_x, .y_offset_sa = tile_y); in brw_emit_surface_state() 914 uint32_t tile_x, tile_y; in gen4_update_renderbuffer_surface() local 922 intel_renderbuffer_get_tile_offsets(irb, &tile_x, &tile_y); in gen4_update_renderbuffer_surface() 924 if (tile_x != 0 || tile_y != 0) { in gen4_update_renderbuffer_surface() 953 &tile_x, in gen4_update_renderbuffer_surface() [all …]
|
D | intel_image.h | 89 GLuint tile_x; member
|
D | intel_blit.c | 758 uint32_t offset, tile_x, tile_y; in intel_miptree_set_alpha_to_one() local 761 &offset, &tile_x, &tile_y); in intel_miptree_set_alpha_to_one()
|
D | intel_mipmap_tree.h | 477 uint32_t *tile_x,
|
D | intel_mipmap_tree.c | 720 assert(image->tile_x == 0 && image->tile_y == 0); in create_ccs_buf_for_image() 843 mt->level[0].level_x = image->tile_x; in intel_miptree_create_for_dri_image() 1246 uint32_t *tile_x, in intel_miptree_get_tile_offsets() argument 1255 *tile_x = x & mask_x; in intel_miptree_get_tile_offsets() 2277 uint32_t tile_x = x / tile_width; in intel_offset_S8() local 2285 + tile_x * tile_size in intel_offset_S8()
|
/external/igt-gpu-tools/tests/i915/ |
D | gem_tiled_pread_basic.c | 93 int tile_x, tile_y; member 113 dbg->tile_x = (tile_off % tile_width) / 4; in calculate_expected() 115 return (dbg->base_y + dbg->tile_y) * WIDTH + dbg->base_x + dbg->tile_x; in calculate_expected() 217 dbg.tile_x, dbg.tile_y,
|
D | gem_tiled_wc.c | 100 int tile_x = (tile_off % tile_width) / 4; in calculate_expected() local 103 __func__, offset, base_x, base_y, tile_x, tile_y, in calculate_expected() 104 (base_y + tile_y) * WIDTH + base_x + tile_x); in calculate_expected() 105 return (base_y + tile_y) * WIDTH + base_x + tile_x; in calculate_expected()
|
D | gem_tiled_wb.c | 107 int tile_x = (tile_off % tile_width) / 4; in calculate_expected() local 109 igt_debug("%3d, %3d, %3d,%3d\n", base_x, base_y, tile_x, tile_y); in calculate_expected() 110 return (base_y + tile_y) * WIDTH + base_x + tile_x; in calculate_expected()
|
/external/mesa3d/src/gallium/drivers/vc4/ |
D | vc4_tiling.c | 80 uint32_t tile_x = utile_x >> 3; in t_utile_address() local 86 tile_x = tile_stride - tile_x - 1; in t_utile_address() 88 uint32_t tile_offset = 4096 * (tile_y * tile_stride + tile_x); in t_utile_address()
|
D | vc4_resource.c | 865 uint32_t tile_x = x / tile_w; in vc4_surface_msaa_get_sample() local 868 VC4_TILE_BUFFER_SIZE * (tile_y * tiles_w + tile_x)); in vc4_surface_msaa_get_sample()
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | intel_fbo.h | 147 uint32_t *tile_x, in intel_renderbuffer_get_tile_offsets() argument 151 tile_x, tile_y); in intel_renderbuffer_get_tile_offsets()
|
D | intel_tex_image.c | 220 GLuint tile_x, in intel_set_texture_image_region() argument 244 intel_image->mt->level[0].slice[0].x_offset = tile_x; in intel_set_texture_image_region() 355 image->tile_x, image->tile_y); in intel_image_target_texture_2d()
|
D | intel_regions.h | 145 GLuint tile_x; member
|
D | intel_mipmap_tree.h | 296 uint32_t *tile_x,
|
D | intel_screen.c | 284 image->tile_x = draw_x & mask_x; in intel_setup_image_from_mipmap_tree() 299 image->tile_x = 0; in intel_setup_image_from_dimensions() 525 image->tile_x = orig_image->tile_x; in intel_dup_image()
|
D | intel_mipmap_tree.c | 516 uint32_t *tile_x, in intel_miptree_get_tile_offsets() argument 526 *tile_x = x & mask_x; in intel_miptree_get_tile_offsets()
|
/external/ImageMagick/MagickCore/ |
D | shear.c | 789 tile_x; in IntegralRotateImage() local 793 tile_x=0; in IntegralRotateImage() 794 for ( ; tile_x < (ssize_t) image->columns; tile_x+=(ssize_t) tile_width) in IntegralRotateImage() 813 if ((tile_width+tile_x) > image->columns) in IntegralRotateImage() 814 width=(size_t) (tile_width-(tile_x+tile_width-image->columns)); in IntegralRotateImage() 818 p=GetCacheViewVirtualPixels(image_view,tile_x,tile_y,width,height, in IntegralRotateImage() 836 (rotate_image->columns-(tile_y+height)),y+tile_x,height,1, in IntegralRotateImage() 986 tile_x; in IntegralRotateImage() local 990 tile_x=0; in IntegralRotateImage() 991 for ( ; tile_x < (ssize_t) image->columns; tile_x+=(ssize_t) tile_width) in IntegralRotateImage() [all …]
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_rast.c | 313 const unsigned tile_x = task->x, tile_y = task->y; in lp_rast_shade_tile() local 346 color[i] = lp_rast_get_color_block_pointer(task, i, tile_x + x, in lp_rast_shade_tile() 358 depth = lp_rast_get_depth_block_pointer(task, tile_x + x, in lp_rast_shade_tile() 374 tile_x + x, tile_y + y, in lp_rast_shade_tile()
|
/external/igt-gpu-tools/tests/ |
D | prime_nv_pcopy.c | 66 uint32_t tile_x; in nv_bo_alloc() local 71 tile_x = 7; in nv_bo_alloc() 73 tile_x = 6 + (tile_mode & 0xf); in nv_bo_alloc() 85 dx = 1 << tile_x; in nv_bo_alloc()
|
/external/mesa3d/src/gallium/drivers/iris/ |
D | iris_resource.h | 457 uint32_t *tile_x, uint32_t *tile_y);
|
D | iris_resource.c | 1547 uint32_t *tile_x, uint32_t *tile_y) in iris_resource_get_tile_offsets() argument 1558 *tile_x = x & mask_x; in iris_resource_get_tile_offsets() 1588 uint32_t tile_x = x / tile_width; in s8_offset() local 1596 + tile_x * tile_size in s8_offset()
|
/external/pdfium/fpdfsdk/ |
D | fpdf_view_embeddertest.cpp | 907 const int tile_x = 2; in TEST_F() local 915 -tile_x * tile_bitmap_size, in TEST_F()
|