/external/mesa3d/src/gallium/drivers/r600/ |
D | r600_blit.c | 662 dst_width = util_format_get_nblocksx(dst->format, dst_width); in r600_resource_copy_region() 664 src_width0 = util_format_get_nblocksx(src->format, src_width0); in r600_resource_copy_region() 666 src_widthFL = util_format_get_nblocksx(src->format, src_widthFL); in r600_resource_copy_region() 669 dstx = util_format_get_nblocksx(dst->format, dstx); in r600_resource_copy_region() 672 sbox.x = util_format_get_nblocksx(src->format, src_box->x); in r600_resource_copy_region() 675 sbox.width = util_format_get_nblocksx(src->format, src_box->width); in r600_resource_copy_region() 687 dst_width = util_format_get_nblocksx(dst->format, dst_width); in r600_resource_copy_region() 688 src_width0 = util_format_get_nblocksx(src->format, src_width0); in r600_resource_copy_region() 689 src_widthFL = util_format_get_nblocksx(src->format, src_widthFL); in r600_resource_copy_region() 691 dstx = util_format_get_nblocksx(dst->format, dstx); in r600_resource_copy_region() [all …]
|
D | r600_state.c | 2943 src_x = util_format_get_nblocksx(src->format, src_box->x); in r600_dma_copy() 2944 dst_x = util_format_get_nblocksx(src->format, dst_x); in r600_dma_copy()
|
D | evergreen_state.c | 3488 src_x = util_format_get_nblocksx(src->format, src_box->x); in evergreen_dma_copy() 3489 dst_x = util_format_get_nblocksx(src->format, dst_x); in evergreen_dma_copy()
|
/external/mesa3d/src/gallium/drivers/nouveau/nv30/ |
D | nv30_miptree.c | 97 rect->w = util_format_get_nblocksx(pt->format, rect->w); in define_rect() 117 rect->x0 = util_format_get_nblocksx(pt->format, x) << mt->ms_x; in define_rect() 279 tx->base.stride = align(util_format_get_nblocksx(pt->format, box->width) * in nv30_miptree_transfer_map() 284 tx->nblocksx = util_format_get_nblocksx(pt->format, box->width); in nv30_miptree_transfer_map() 409 mt->uniform_pitch = util_format_get_nblocksx(pt->format, w) * blocksz; in nv30_miptree_create() 427 unsigned nbx = util_format_get_nblocksx(pt->format, w); in nv30_miptree_create() 428 unsigned nby = util_format_get_nblocksx(pt->format, h); in nv30_miptree_create()
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_blit.c | 882 dst_width = util_format_get_nblocksx(dst->format, dst_width); in si_resource_copy_region() 884 src_width0 = util_format_get_nblocksx(src->format, src_width0); in si_resource_copy_region() 887 dstx = util_format_get_nblocksx(dst->format, dstx); in si_resource_copy_region() 890 sbox.x = util_format_get_nblocksx(src->format, src_box->x); in si_resource_copy_region() 893 sbox.width = util_format_get_nblocksx(src->format, src_box->width); in si_resource_copy_region() 906 dst_width = util_format_get_nblocksx(dst->format, dst_width); in si_resource_copy_region() 907 src_width0 = util_format_get_nblocksx(src->format, src_width0); in si_resource_copy_region() 909 dstx = util_format_get_nblocksx(dst->format, dstx); in si_resource_copy_region() 912 sbox.x = util_format_get_nblocksx(src->format, src_box->x); in si_resource_copy_region() 913 sbox.width = util_format_get_nblocksx(src->format, src_box->width); in si_resource_copy_region()
|
D | si_dma.c | 265 src_x = util_format_get_nblocksx(src->format, src_box->x); in si_dma_copy() 266 dst_x = util_format_get_nblocksx(src->format, dst_x); in si_dma_copy()
|
/external/mesa3d/src/gallium/drivers/i915/ |
D | i915_resource_texture.c | 95 return align(util_format_get_nblocksx(format, width), align_to); in align_nblocksx() 299 const unsigned nblocks = util_format_get_nblocksx(pt->format, width); in i9x5_texture_layout_cube() 445 unsigned nblocksx = util_format_get_nblocksx(pt->format, width); in i945_texture_layout_2d() 463 util_format_get_nblocksx(pt->format, u_minify(width, 2)); in i945_texture_layout_2d() 558 const unsigned nblocks = util_format_get_nblocksx(pt->format, width); in i945_texture_layout_cube() 608 util_format_get_nblocksx(pt->format, x), in i945_texture_layout_cube()
|
/external/mesa3d/src/gallium/drivers/nouveau/nv50/ |
D | nv50_transfer.c | 36 rect->width = util_format_get_nblocksx(res->format, w); in nv50_m2mf_rect_setup() 38 rect->x = util_format_get_nblocksx(res->format, x); in nv50_m2mf_rect_setup() 278 tx->nblocksx = util_format_get_nblocksx(res->format, box->width); in nv50_miptree_transfer_map()
|
D | nv50_miptree.c | 306 unsigned nbx = util_format_get_nblocksx(pt->format, w); in nv50_miptree_init_layout_tiled()
|
D | nv50_surface.c | 228 unsigned nx = util_format_get_nblocksx(src->format, src_box->width) in nv50_resource_copy_region()
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_format.h | 795 util_format_get_nblocksx(enum pipe_format format, in util_format_get_nblocksx() function 815 return util_format_get_nblocksx(format, width) * util_format_get_nblocksy(format, height); in util_format_get_nblocks() 822 return util_format_get_nblocksx(format, width) * util_format_get_blocksize(format); in util_format_get_stride()
|
D | u_debug_image.c | 126 util_format_get_nblocksx(texture->format, surface->width), in debug_dump_surface()
|
/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_resource_texture.c | 216 stride = util_format_get_nblocksx(texture->format, texture->width0) * in svga_texture_get_handle() 345 nblocksx = util_format_get_nblocksx(texture->format, st->base.box.width); in svga_texture_transfer_map_dma() 462 nblocksx = util_format_get_nblocksx(texture->format, w); in svga_texture_transfer_map_direct() 1401 nblocksx = util_format_get_nblocksx(texture->format, st->base.box.width); in svga_texture_transfer_map_upload()
|
/external/mesa3d/src/gallium/drivers/trace/ |
D | tr_dump.c | 518 size = util_format_get_nblocksx(format, box->width) * util_format_get_blocksize(format); in trace_dump_box_bytes()
|
/external/mesa3d/src/gallium/drivers/freedreno/a4xx/ |
D | fd4_texture.c | 276 util_format_get_nblocksx( in fd4_sampler_view_create()
|
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
D | nvc0_miptree.c | 209 unsigned nbx = util_format_get_nblocksx(pt->format, w); in nvc0_miptree_init_layout_tiled()
|
D | nvc0_transfer.c | 388 tx->nblocksx = util_format_get_nblocksx(res->format, box->width); in nvc0_miptree_transfer_map()
|
D | nvc0_surface.c | 232 unsigned nx = util_format_get_nblocksx(src->format, src_box->width) in nvc0_resource_copy_region()
|
/external/mesa3d/src/gallium/drivers/freedreno/a5xx/ |
D | fd5_texture.c | 273 util_format_get_nblocksx( in fd5_sampler_view_create()
|
/external/mesa3d/src/gallium/tests/trivial/ |
D | compute.c | 197 util_format_get_nblocksx(format, w)); in init_tex() 238 util_format_get_nblocksx(tex->format, tex->width0)); in check_tex()
|
/external/mesa3d/src/gallium/drivers/freedreno/a3xx/ |
D | fd3_format.c | 348 return util_format_get_nblocksx(format, width); in fd3_pipe2nblocksx()
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_texture.c | 115 nblocksx = util_format_get_nblocksx(pt->format, in llvmpipe_texture_layout()
|
/external/mesa3d/src/gallium/drivers/swr/ |
D | swr_screen.cpp | 717 res->swr.qpitch = util_format_get_nblocksx(fmt, width); in swr_texture_layout()
|
/external/mesa3d/src/gallium/drivers/freedreno/ |
D | freedreno_resource.c | 469 ptrans->stride = util_format_get_nblocksx(format, slice->pitch) * rsc->cpp; in fd_resource_transfer_map()
|
/external/mesa3d/src/gallium/drivers/radeon/ |
D | r600_texture.c | 1805 unsigned nblks_x = util_format_get_nblocksx(tex->format, width); in r600_create_surface()
|