HomeSort by: relevance | last modified time | path
    Searched refs:tile_width (Results 1 - 25 of 61) sorted by relevancy

1 2 3

  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/
radeon_tile.c 46 const unsigned tile_width = 8, tile_height = 4; local
47 const unsigned tiles_in_row = (width + (tile_width - 1)) / tile_width;
52 for (col = 0; col < width; col += tile_width, ++k)
61 unsigned columns = MIN2(tile_width, width - col);
63 dst2 += tile_width;
77 const unsigned tile_width = 4, tile_height = 4; local
78 const unsigned tiles_in_row = (width + (tile_width - 1)) / tile_width;
83 for (col = 0; col < width; col += tile_width, ++k
108 const unsigned tile_width = 8, tile_height = 2; local
139 const unsigned tile_width = 4, tile_height = 2; local
170 const unsigned tile_width = 2, tile_height = 2; local
260 const unsigned tile_width = 8, tile_height = 4; local
293 const unsigned tile_width = 8, tile_height = 2; local
326 const unsigned tile_width = 4, tile_height = 4; local
359 const unsigned tile_width = 4, tile_height = 2; local
392 const unsigned tile_width = 2, tile_height = 2; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/radeon/
radeon_tile.c 46 const unsigned tile_width = 8, tile_height = 4; local
47 const unsigned tiles_in_row = (width + (tile_width - 1)) / tile_width;
52 for (col = 0; col < width; col += tile_width, ++k)
61 unsigned columns = MIN2(tile_width, width - col);
63 dst2 += tile_width;
77 const unsigned tile_width = 4, tile_height = 4; local
78 const unsigned tiles_in_row = (width + (tile_width - 1)) / tile_width;
83 for (col = 0; col < width; col += tile_width, ++k
108 const unsigned tile_width = 8, tile_height = 2; local
139 const unsigned tile_width = 4, tile_height = 2; local
170 const unsigned tile_width = 2, tile_height = 2; local
260 const unsigned tile_width = 8, tile_height = 4; local
293 const unsigned tile_width = 8, tile_height = 2; local
326 const unsigned tile_width = 4, tile_height = 4; local
359 const unsigned tile_width = 4, tile_height = 2; local
392 const unsigned tile_width = 2, tile_height = 2; local
    [all...]
  /xsrc/external/mit/xf86-video-intel/dist/src/sna/
blt.c 231 const unsigned tile_width = 512; local
236 const unsigned tile_pixels = tile_width / cpp;
253 length_x = min(tile_width - offset_x, width);
266 tile_row += (dst_y & (tile_height-1)) * tile_width;
276 while (w >= tile_width) {
277 assert(((uintptr_t)tile_row & (tile_width - 1)) == 0);
278 to_sse128xN(assume_aligned(tile_row, tile_width),
279 src_row, tile_width); local
281 src_row = (const uint8_t *)src_row + tile_width;
282 w -= tile_width;
449 const unsigned tile_width = 512; local
561 const unsigned tile_width = 512; local
619 tile_width); local
727 const unsigned tile_width = 512; local
766 src, tile_width); local
784 const unsigned tile_width = 512; local
842 const unsigned tile_width = 512; local
889 tile_width); local
1048 const unsigned tile_width = 128; local
1086 src, tile_width); local
1105 const unsigned tile_width = 128; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/panfrost/lib/
pan_tiler.c 231 pan_tile_count(unsigned width, unsigned height, unsigned tile_width, unsigned tile_height)
233 unsigned aligned_width = ALIGN_POT(width, tile_width);
236 unsigned tile_count_x = aligned_width / tile_width;
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/
blt.c 231 const unsigned tile_width = 512; local
236 const unsigned tile_pixels = tile_width / cpp;
254 tile_row += (dst_y & (tile_height-1)) * tile_width;
259 const unsigned len = min(tile_width - x, w);
267 while (w >= tile_width) {
268 memcpy(tile_row, src, tile_width);
271 src = (const uint8_t *)src + tile_width;
272 w -= tile_width;
287 const unsigned tile_width = 512; local
292 const unsigned tile_pixels = tile_width / cpp
343 const unsigned tile_width = 512; local
412 const unsigned tile_width = 512; local
481 const unsigned tile_width = 512; local
550 const unsigned tile_width = 512; local
619 const unsigned tile_width = 512; local
687 const unsigned tile_width = 512; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
u_linear.h 82 * @tile_width the width of the tile in pixels
89 unsigned tile_width, unsigned tile_height,
u_linear.c 86 unsigned tile_width, unsigned tile_height,
91 t->tile.width = tile_width;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
u_linear.h 82 * @tile_width the width of the tile in pixels
89 unsigned tile_width, unsigned tile_height,
u_linear.c 86 unsigned tile_width, unsigned tile_height,
91 t->tile.width = tile_width;
  /xsrc/external/mit/xf86-video-intel/dist/src/uxa/
intel_memory.c 125 unsigned long tile_width = (tiling_mode == I915_TILING_Y) ? 128 : 512; local
132 return ALIGN(pitch, tile_width);
135 for (i = tile_width; i < pitch; i <<= 1) ;
intel_uxa.c 574 unsigned long tile_width; local
579 tile_width = (tiling == I915_TILING_Y) ? 128 : 512;
581 return tile_width;
583 while (tile_width < pitch)
584 tile_width <<= 1;
586 return tile_width;
613 unsigned tile_width; local
635 tile_width = intel_get_tile_width(intel, tiling, stride);
636 stride = ALIGN(stride, tile_width);
639 intel_pixmap_pitch(pixmap) & (tile_width - 1) |
    [all...]
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/uxa/
intel_memory.c 125 unsigned long tile_width = (tiling_mode == I915_TILING_Y) ? 128 : 512; local
132 return ALIGN(pitch, tile_width);
135 for (i = tile_width; i < pitch; i <<= 1) ;
intel_uxa.c 549 unsigned long tile_width; local
554 tile_width = (tiling == I915_TILING_Y) ? 128 : 512;
556 return tile_width;
558 while (tile_width < pitch)
559 tile_width <<= 1;
561 return tile_width;
588 unsigned tile_width; local
610 tile_width = intel_get_tile_width(intel, tiling, stride);
611 stride = ALIGN(stride, tile_width);
614 intel_pixmap_pitch(pixmap) & (tile_width - 1) |
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/vc4/kernel/
vc4_drv.h 84 uint32_t tile_width, tile_height; member in struct:vc4_exec_info
vc4_gem.c 146 exec->tile_width = 32;
149 exec->tile_width = 64;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/vc4/kernel/
vc4_drv.h 84 uint32_t tile_width, tile_height; member in struct:vc4_exec_info
vc4_gem.c 146 exec->tile_width = 32;
149 exec->tile_width = 64;
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/vc4/
vc4_blit.c 57 int tile_width = msaa ? 32 : 64; local
80 if (is_tile_unaligned(info->dst.box.x, tile_width) ||
82 (is_tile_unaligned(info->dst.box.width, tile_width) &&
140 job->tile_width = 32;
151 job->tile_width = tile_width;
vc4_job.c 206 job->tile_width = 32;
209 job->tile_width = 64;
264 job->tile_width);
461 submit.min_x_tile = job->draw_min_x / job->tile_width;
463 submit.max_x_tile = (job->draw_max_x - 1) / job->tile_width;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/v3d/
v3d_blit.c 58 int tile_width = msaa ? 32 : 64;
81 if (is_tile_unaligned(info->dst.box.x, tile_width) ||
83 (is_tile_unaligned(info->dst.box.width, tile_width) &&
141 job->tile_width = 32;
152 job->tile_width = tile_width;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/vc4/
vc4_blit.c 57 int tile_width = msaa ? 32 : 64; local
80 if (is_tile_unaligned(info->dst.box.x, tile_width) ||
82 (is_tile_unaligned(info->dst.box.width, tile_width) &&
140 job->tile_width = 32;
151 job->tile_width = tile_width;
vc4_job.c 206 job->tile_width = 32;
209 job->tile_width = 64;
264 job->tile_width);
461 submit.min_x_tile = job->draw_min_x / job->tile_width;
463 submit.max_x_tile = (job->draw_max_x - 1) / job->tile_width;
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/v3d/
v3d_blit.c 493 uint32_t tile_width, tile_height, max_bpp; local
494 v3d_get_tile_buffer_size(msaa, is_color_blit ? 1 : 0, surfaces, src_surf, &tile_width, &tile_height, &max_bpp);
500 if (is_tile_unaligned(info->dst.box.x, tile_width) ||
502 (is_tile_unaligned(info->dst.box.width, tile_width) &&
517 job->tile_width = tile_width;
535 job->tile_width);
v3d_context.c 247 uint32_t *tile_width,
284 *tile_width = tile_sizes[tile_size_index * 2 + 0];
  /xsrc/external/mit/xgc/dist/
main.c 425 X.tile = XCreatePixmap(X.dpy,X.win,tile_width,tile_height,
429 (char *)tile_bits,tile_width,
432 X.stipple = XCreateBitmapFromData(X.dpy,X.win,(char *)tile_bits,tile_width,

Completed in 22 milliseconds

1 2 3