Searched refs:tile_w (Results 1 - 6 of 6) sorted by relevance

/external/mesa3d/src/gallium/drivers/ilo/core/
H A Dilo_image.h240 unsigned tile_w, tile_h; local
244 tile_w = 1;
248 tile_w = 512;
252 tile_w = 128;
256 tile_w = 64;
261 tile_w = 1;
266 assert(mem_x % tile_w == 0);
/external/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_nir_lower_txf_ms.c76 uint32_t tile_w = 32; local
80 uint32_t tile_size = (tile_h * tile_w *
83 uint32_t w = align(c->key->tex[unit].msaa_width, tile_w);
84 uint32_t w_tiles = w / tile_w;
95 nir_imm_int(b, (tile_w - 1) & ~1));
103 tile_w *
H A Dvc4_resource.c772 uint32_t tile_w = 32, tile_h = 32; local
775 uint32_t tile_x = x / tile_w;
779 uint32_t subtile_x = x % tile_w;
783 uint32_t tile_stride = quad_samples * tile_w / 2;
843 uint32_t tile_w = 32, tile_h = 32; local
844 uint32_t tiles_w = DIV_ROUND_UP(psurf->width, tile_w);
862 for (int tx = 0; tx < psurf->width; tx += tile_w) {
864 uint32_t bx1 = (x * tile_w /
866 uint32_t bx2 = ((x + 1) * tile_w /
/external/pdfium/third_party/libopenjpeg20/
H A Dt1.c1283 OPJ_UINT32 tile_w = (OPJ_UINT32)(tilec->x1 - tilec->x0); local
1339 OPJ_INT32* restrict tiledp = &tilec->data[(OPJ_UINT32)y * tile_w + (OPJ_UINT32)x];
1343 ((OPJ_INT32*)tiledp)[(j * tile_w) + i] = tmp/2;
1347 OPJ_FLOAT32* restrict tiledp = (OPJ_FLOAT32*) &tilec->data[(OPJ_UINT32)y * tile_w + (OPJ_UINT32)x];
1356 tiledp += tile_w;
1475 OPJ_UINT32 tile_w = (OPJ_UINT32)(tilec->x1 - tilec->x0); local
1515 tileLineAdvance = tile_w - cblk_w;
1517 tiledp=&tilec->data[(OPJ_UINT32)y * tile_w + (OPJ_UINT32)x];
1519 t1->data_stride = tile_w;
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_mipmap_tree.h814 uint32_t *tile_w, uint32_t *tile_h);
H A Dintel_mipmap_tree.c1149 * This function computes the tile_w (in bytes) and tile_h (in rows) of
1150 * different tiling patterns. If the BO is untiled, tile_w is set to cpp
1155 uint32_t *tile_w, uint32_t *tile_h)
1160 *tile_w = 512;
1164 *tile_w = 128;
1168 *tile_w = cpp;
1200 *tile_w = *tile_h * aspect_ratio * cpp;
1154 intel_get_tile_dims(uint32_t tiling, uint32_t tr_mode, uint32_t cpp, uint32_t *tile_w, uint32_t *tile_h) argument

Completed in 160 milliseconds