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

1 2

  /xsrc/external/mit/MesaLib/dist/src/panfrost/lib/
pan_tiler.c 223 /* If the width-x-height framebuffer is divided into tile_size-x-tile_size
225 * special case of tile_size=16, this aligns with the usual Midgard count.
226 * tile_size must be a power-of-two. Not really repeat code from AFBC/checksum,
266 unsigned tile_size = (1 << b) * MIN_TILE_SIZE; local
268 unsigned tile_count = pan_tile_count(width, height, tile_size, tile_size);
pan_cs.c 293 unsigned *tile_size)
297 *tile_size = 16 * 16;
305 rt->nr_samples * (*tile_size);
311 *tile_size >>= 1;
318 assert(*tile_size >= 4 * 4);
577 pan_force_clean_write_rt(const struct pan_image_view *rt, unsigned tile_size)
585 assert(tile_size <= 16*16);
588 return !(superblock == 16 && tile_size == 16*16);
592 pan_force_clean_write(const struct pan_fb_info *fb, unsigned tile_size)
595 assert(tile_size <= 16*16)
632 unsigned tile_size; local
    [all...]
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/
blt.c 233 const unsigned tile_size = 4096; local
256 tile_row += (dst_x >> tile_shift) * tile_size;
262 tile_row += tile_size;
270 tile_row += tile_size;
289 const unsigned tile_size = 4096; local
312 tile_row += (src_x >> tile_shift) * tile_size;
318 tile_row += tile_size;
326 tile_row += tile_size;
345 const unsigned tile_size = 4096; local
363 (dy / tile_height * stride_tiles * tile_size
414 const unsigned tile_size = 4096; local
483 const unsigned tile_size = 4096; local
552 const unsigned tile_size = 4096; local
621 const unsigned tile_size = 4096; local
689 const unsigned tile_size = 4096; local
    [all...]
sna_render.c 933 int tile_width, tile_height, tile_size; local
936 &tile_width, &tile_height, &tile_size);
938 __FUNCTION__, bo->tiling, tile_width, tile_height, tile_size));
948 offset = box.x1 * draw->bitsPerPixel / 8 / tile_width * tile_size;
1061 int tile_width, tile_height, tile_size; local
1064 &tile_width, &tile_height, &tile_size);
1068 tile_width, tile_height, tile_size));
1081 offset = box.x1 * pixmap->drawable.bitsPerPixel / 8 / tile_width * tile_size;
1977 int tile_width, tile_height, tile_size; local
1980 &tile_width, &tile_height, &tile_size);
    [all...]
kgem.c 1807 int *tile_width, int *tile_height, int *tile_size)
1814 *tile_size = 2048;
1818 *tile_size = 4096;
1823 *tile_size = 1;
1830 *tile_size = 1;
1835 *tile_size = 4096;
1840 *tile_size = 4096;
1952 int tile_width, tile_height, tile_size; local
1973 &tile_width, &tile_height, &tile_size);
1975 DBG(("%s: tile_width=%d, tile_size=%d\n", __FUNCTION__, tile_width, tile_size))
    [all...]
kgem.h 514 int *tile_width, int *tile_height, int *tile_size);
  /xsrc/external/mit/xf86-video-intel/dist/src/sna/
blt.c 233 const unsigned tile_size = 4096; local
256 dst = (uint8_t *)dst + (dst_x >> tile_shift) * tile_size;
272 tile_row += tile_size;
280 tile_row += tile_size;
451 const unsigned tile_size = 4096; local
478 src = (const uint8_t *)src + (src_x >> tile_shift) * tile_size;
490 tile_row += tile_size;
500 tile_row += tile_size;
526 tile_row += tile_size;
563 const unsigned tile_size = 4096 local
729 const unsigned tile_size = 4096; local
786 const unsigned tile_size = 4096; local
844 const unsigned tile_size = 4096; local
1050 const unsigned tile_size = 2048; local
1107 const unsigned tile_size = 2048; local
    [all...]
sna_render.c 914 int tile_width, tile_height, tile_size; local
917 &tile_width, &tile_height, &tile_size);
919 __FUNCTION__, bo->tiling, tile_width, tile_height, tile_size));
929 offset = box.x1 * draw->bitsPerPixel / 8 / tile_width * tile_size;
1042 int tile_width, tile_height, tile_size; local
1045 &tile_width, &tile_height, &tile_size);
1049 tile_width, tile_height, tile_size));
1062 offset = box.x1 * pixmap->drawable.bitsPerPixel / 8 / tile_width * tile_size;
1961 int tile_width, tile_height, tile_size; local
1964 &tile_width, &tile_height, &tile_size);
    [all...]
kgem.c 2263 int *tile_width, int *tile_height, int *tile_size)
2270 *tile_size = 2048;
2274 *tile_size = 4096;
2279 *tile_size = 1;
2286 *tile_size = 1;
2291 *tile_size = 4096;
2296 *tile_size = 4096;
2408 int tile_width, tile_height, tile_size; local
2429 &tile_width, &tile_height, &tile_size);
2431 DBG(("%s: tile_width=%d, tile_size=%d\n", __FUNCTION__, tile_width, tile_size))
    [all...]
kgem.h 530 int *tile_width, int *tile_height, int *tile_size);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/vc4/
vc4_nir_lower_txf_ms.c 76 uint32_t tile_size = (tile_h * tile_w * local
86 nir_imm_int(b, tile_size)),
89 tile_size))));
vc4_blit.c 46 is_tile_unaligned(unsigned size, unsigned tile_size)
48 return size & (tile_size - 1);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/vc4/
vc4_nir_lower_txf_ms.c 79 uint32_t tile_size = (tile_h * tile_w * local
89 nir_imm_int(b, tile_size)),
92 tile_size))));
vc4_blit.c 46 is_tile_unaligned(unsigned size, unsigned tile_size)
48 return size & (tile_size - 1);
  /xsrc/external/mit/libdrm/dist/tests/exynos/
exynos_fimg2d_test.c 154 unsigned int num_tiles_y, unsigned int tile_size)
158 const unsigned int stride = num_tiles_x * tile_size;
160 if (posix_memalign((void*)&buf, 64, num_tiles_y * tile_size * stride * 4) != 0)
167 for (i = 0; i < tile_size; ++i) {
168 for (j = 0; j < tile_size; ++j) {
169 buf[x * tile_size + y * stride * tile_size + i + j * stride] = color;
  /xsrc/external/mit/xorg-server/dist/glamor/
glamor.c 248 int tile_size = glamor_priv->max_fbo_size; local
250 pixmap, w, h, tile_size);
252 tile_size, tile_size, pixmap_priv);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/v3d/
v3d_blit.c 47 is_tile_unaligned(unsigned size, unsigned tile_size)
49 return size & (tile_size - 1);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/etnaviv/
etnaviv_rs.c 471 size_t tile_size; local
478 tile_size = util_format_get_blocksize(blit_info->src.format) * 4 * 4;
495 memcpy(drow, srow, tile_size * blit_info->src.box.width);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/etnaviv/
etnaviv_rs.c 440 size_t tile_size; local
447 tile_size = util_format_get_blocksize(blit_info->src.format) * 4 * 4;
464 memcpy(drow, srow, tile_size * blit_info->src.box.width);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/v3d/
v3d_blit.c 429 is_tile_unaligned(unsigned size, unsigned tile_size)
431 return size & (tile_size - 1);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/crocus/
crocus_resource.c 1320 uint32_t tile_size = 4096; local
1333 + tile_x * tile_size
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/iris/
iris_resource.c 1075 uint32_t tile_size = 4096; local
1088 + tile_x * tile_size
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/codegen/
nv50_ir_lowering_nv50.cpp 1768 Value *tile_size[3]; local
1772 tile_size[0] = bld.loadImm(NULL, (uint16_t)64);
1777 tile_size[i] = bld.mkOp2v(OP_SHL, TYPE_U16, bld.getSSA(2), bld.loadImm(NULL, (uint16_t)1), tile_shift[i]);
1778 tile_mask[i] = bld.mkOp2v(OP_ADD, TYPE_U16, bld.getSSA(2), tile_size[i], bld.loadImm(NULL, (uint16_t)-1));
  /xsrc/external/mit/xf86-video-savage/dist/src/
savage_driver.c 4089 int address=0,top=0,left=0,tile_height,tile_size; local
4095 tile_size = TILE_SIZE_BYTE_2000; /* 4096 */
4098 tile_size = TILE_SIZE_BYTE; /* 2048 */
4110 address = top * psav->lDelta + left * tile_size / TILEWIDTH_16BPP;
4113 address = top * psav->lDelta + left * tile_size / TILEWIDTH_32BPP;
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/iris/
iris_resource.c 1933 uint32_t tile_size = 4096; local
1946 + tile_x * tile_size

Completed in 53 milliseconds

1 2