/external/mesa3d/src/gallium/drivers/i915/ |
i915_resource.h | 62 unsigned short nblocksx; member in struct:offset_pair
|
i915_resource_texture.c | 142 tex->image_offset[level][0].nblocksx = 0; 150 x = tex->image_offset[level][layer].nblocksx 160 unsigned nblocksx, unsigned nblocksy) 163 assert(!(img == 0 && level == 0) || (nblocksx == 0 && nblocksy == 0)); 166 tex->image_offset[level][img].nblocksx = nblocksx; 444 unsigned nblocksx = util_format_get_nblocksx(pt->format, pt->width0); local 464 if (mip1_nblocksx > nblocksx) 485 x += nblocksx; 492 nblocksx = align_nblocksx(pt->format, width, align_x) [all...] |
/external/mesa3d/src/gallium/drivers/nv50/ |
nv50_transfer.c | 11 uint32_t nblocksx; member in struct:nv50_transfer 56 uint32_t nblocksx, uint32_t nblocksy) 133 PUSH_DATA (push, nblocksx * cpp); 277 tx->nblocksx = box->width << mt->ms_x; 280 tx->nblocksx = util_format_get_nblocksx(res->format, box->width); 284 tx->base.stride = tx->nblocksx * util_format_get_blocksize(res->format); 299 tx->rect[1].width = tx->nblocksx; 311 tx->nblocksx, tx->nblocksy); 338 tx->nblocksx, tx->nblocksy);
|
/external/mesa3d/src/gallium/drivers/svga/ |
svga_resource_texture.c | 250 unsigned nblocksx = util_format_get_nblocksx(texture->format, box->width); local 266 st->base.stride = nblocksx*util_format_get_blocksize(texture->format);
|
/external/opencv3/modules/photo/src/ |
fast_nlmeans_denoising_opencl.hpp | 99 int nblocksx = divUp(size.width, BLOCK_COLS), nblocksy = divUp(size.height, BLOCK_ROWS); local 167 Size colSumSize(nblocksx * templateWindowSize, searchWindowSizeSq * nblocksy); 175 size_t globalsize[2] = { nblocksx * ctaSize, nblocksy }, localsize[2] = { ctaSize, 1 };
|
/external/mesa3d/src/gallium/drivers/nv30/ |
nv30_miptree.c | 77 unsigned nblocksx; member in struct:nv30_transfer 183 tx->nblocksx = util_format_get_nblocksx(pt->format, box->width); 187 tx->nblocksx, tx->nblocksy, &tx->img); 201 tx->tmp.w = tx->nblocksx;
|
/external/mesa3d/src/gallium/drivers/nvc0/ |
nvc0_transfer.c | 11 uint32_t nblocksx; member in struct:nvc0_transfer 20 uint32_t nblocksx, uint32_t nblocksy) 98 PUSH_DATA (push, nblocksx * cpp); 115 uint32_t nblocksx, uint32_t nblocksy) 167 PUSH_DATA (push, nblocksx * cpp); 357 tx->nblocksx = box->width << mt->ms_x; 360 tx->nblocksx = util_format_get_nblocksx(res->format, box->width); 365 tx->base.stride = tx->nblocksx * util_format_get_blocksize(res->format); 380 tx->rect[1].width = tx->nblocksx; 392 tx->nblocksx, tx->nblocksy) [all...] |
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_texture.c | 124 unsigned alignment, nblocksx, nblocksy, block_size; local 134 nblocksx = util_format_get_nblocksx(pt->format, 140 lpr->row_stride[level] = align(nblocksx * block_size, 16); 806 const unsigned nblocksx = local 808 const unsigned buffer_size = block_size * nblocksy * nblocksx; [all...] |