Searched refs:tile_x (Results 1 - 21 of 21) sorted by relevance

/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dgen7_misc_state.c109 uint32_t tile_x = 0, tile_y = 0; local
119 tile_x = draw_x & tile_mask_x;
129 * We have no guarantee that tile_x and tile_y are correctly aligned,
134 * tile_x and tile_y to 0. This is a temporary workaround until we
137 tile_x &= ~7;
142 dw3 = ((srb->Base.Base.Width + tile_x - 1) << 4) |
152 OUT_BATCH(tile_x | (tile_y << 16));
157 uint32_t tile_x, tile_y, offset; local
161 tile_x = draw_x & tile_mask_x;
171 * We have no guarantee that tile_x an
[all...]
H A Dbrw_misc_state.c372 uint32_t tile_x, tile_y; local
398 tile_x = draw_x & tile_mask_x;
408 * We have no guarantee that tile_x and tile_y are correctly aligned,
413 * tile_x and tile_y to 0. This is a temporary workaround until we come
417 tile_x &= ~7;
430 OUT_BATCH(((stencil_irb->Base.Base.Width + tile_x - 1) << 6) |
435 OUT_BATCH(tile_x | (tile_y << 16));
437 assert(tile_x == 0 && tile_y == 0);
446 uint32_t tile_x, tile_y, offset; local
456 tile_x
[all...]
H A Dbrw_blorp.cpp125 brw_blorp_surface_info::compute_tile_offsets(uint32_t *tile_x, argument
134 *tile_x = x_offset & mask_x;
H A Dgen6_blorp.cpp427 uint32_t tile_x, tile_y; local
439 surf[1] = (surface->compute_tile_offsets(&tile_x, &tile_y) +
461 assert(tile_x % 4 == 0);
463 surf[5] = ((tile_x / 4) << BRW_SURFACE_X_OFFSET_SHIFT |
841 uint32_t tile_x = draw_x & tile_mask_x; local
855 * We have no guarantee that tile_x and tile_y are correctly aligned,
860 * tile_x and tile_y to 0. This is a temporary workaround until we come
863 tile_x &= ~7;
884 (params->depth.width + tile_x - 1) << 6 |
887 OUT_BATCH(tile_x |
[all...]
H A Dgen7_blorp.cpp153 uint32_t tile_x, tile_y; local
171 surf->ss1.base_addr = surface->compute_tile_offsets(&tile_x, &tile_y);
177 assert(tile_x % 4 == 0);
179 surf->ss5.x_offset = tile_x / 4;
589 uint32_t tile_x = draw_x & tile_mask_x; local
603 * We have no guarantee that tile_x and tile_y are correctly aligned,
608 * tile_x and tile_y to 0. This is a temporary workaround until we come
611 tile_x &= ~7;
628 OUT_BATCH((params->depth.width + tile_x - 1) << 4 |
631 OUT_BATCH(tile_x |
[all...]
H A Dintel_span.c75 uint32_t tile_x = x / tile_width; local
83 + tile_x * tile_size
H A Dbrw_blorp.h107 uint32_t compute_tile_offsets(uint32_t *tile_x, uint32_t *tile_y) const;
H A Dgen7_wm_surface_state.c510 uint32_t tile_x, tile_y; local
552 surf->ss1.base_addr = intel_renderbuffer_tile_offsets(irb, &tile_x, &tile_y);
559 assert(tile_x % 4 == 0);
561 surf->ss5.x_offset = tile_x / 4;
H A Dbrw_wm_surface_state.c1125 uint32_t tile_x, tile_y; local
1130 intel_renderbuffer_tile_offsets(irb, &tile_x, &tile_y);
1132 if (tile_x != 0 || tile_y != 0) {
1195 surf[1] = (intel_renderbuffer_tile_offsets(irb, &tile_x, &tile_y) +
1206 assert(brw->has_surface_tile_offset || (tile_x == 0 && tile_y == 0));
1210 assert(tile_x % 4 == 0);
1212 surf[5] = ((tile_x / 4) << BRW_SURFACE_X_OFFSET_SHIFT |
H A Dintel_fbo.c578 uint32_t *tile_x,
586 *tile_x = irb->draw_x & mask_x;
577 intel_renderbuffer_tile_offsets(struct intel_renderbuffer *irb, uint32_t *tile_x, uint32_t *tile_y) argument
/external/webp/src/enc/
H A Dpredictor_enc.c284 int tile_x, int tile_y, int bits,
292 const int start_x = tile_x << bits;
306 const int left_mode = (tile_x > 0) ?
307 (modes[tile_y * tiles_per_row + tile_x - 1] >> 8) & 0xff : 0xff;
309 (modes[(tile_y - 1) * tiles_per_row + tile_x] >> 8) & 0xff : 0xff;
470 int tile_x; local
471 for (tile_x = 0; tile_x < tiles_per_row; ++tile_x) {
472 const int pred = GetBestPredictorForTile(width, height, tile_x, tile_
283 GetBestPredictorForTile(int width, int height, int tile_x, int tile_y, int bits, int accumulated[4][256], uint32_t* const argb_scratch, const uint32_t* const argb, int max_quantization, int exact, int used_subtract_green, const uint32_t* const modes) argument
653 GetBestColorTransformForTile( int tile_x, int tile_y, int bits, VP8LMultipliers prev_x, VP8LMultipliers prev_y, int quality, int xsize, int ysize, const int accumulated_red_histo[256], const int accumulated_blue_histo[256], const uint32_t* const argb) argument
681 CopyTileWithColorTransform(int xsize, int ysize, int tile_x, int tile_y, int max_tile_size, VP8LMultipliers color_transform, uint32_t* argb) argument
702 int tile_x, tile_y; local
[all...]
H A Dvp8l_enc.c653 int tile_x = x & tile_mask; local
660 if ((tile_x != (x & tile_mask)) || (tile_y != (y & tile_mask))) {
661 tile_x = x & tile_mask;
1387 int tile_x, tile_y; local
1395 for (tile_x = 0; tile_x < tiles_per_row; ++tile_x) {
1396 predictors[tile_y * tiles_per_row + tile_x] = 0xff000000u | (pred << 8);
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_span.c75 uint32_t tile_x = x / tile_width; local
83 + tile_x * tile_size
H A Dintel_fbo.c578 uint32_t *tile_x,
586 *tile_x = irb->draw_x & mask_x;
577 intel_renderbuffer_tile_offsets(struct intel_renderbuffer *irb, uint32_t *tile_x, uint32_t *tile_y) argument
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_span.c75 uint32_t tile_x = x / tile_width; local
83 + tile_x * tile_size
H A Dintel_fbo.h166 uint32_t *tile_x,
H A Dintel_fbo.c578 uint32_t *tile_x,
586 *tile_x = irb->draw_x & mask_x;
577 intel_renderbuffer_tile_offsets(struct intel_renderbuffer *irb, uint32_t *tile_x, uint32_t *tile_y) argument
/external/ImageMagick/MagickCore/
H A Dshear.c782 tile_x;
786 tile_x=0;
787 for ( ; tile_x < (ssize_t) image->columns; tile_x+=(ssize_t) tile_width)
806 if ((tile_x+(ssize_t) tile_width) > (ssize_t) image->columns)
807 width=(size_t) (tile_width-(tile_x+tile_width-image->columns));
811 p=GetCacheViewVirtualPixels(image_view,tile_x,tile_y,width,height,
829 (rotate_image->columns-(tile_y+height)),y+tile_x,height,1,
996 tile_x;
1000 tile_x
778 tile_x; local
992 tile_x; local
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_rast.c340 const unsigned tile_x = task->x, tile_y = task->y; local
367 tile_x + x, tile_y + y);
370 depth = lp_rast_get_depth_block_pointer(task, tile_x + x, tile_y + y);
375 tile_x + x, tile_y + y,
/external/pdfium/third_party/libopenjpeg20/
H A Dopenjpeg.h820 int tile_x; member in struct:opj_codestream_info
/external/libvncserver/webclients/novnc/include/
H A Drfb.js1460 var tile_x = curr_tile % this._FBU.tiles_x;
1462 var x = this._FBU.x + tile_x * 16;

Completed in 1194 milliseconds