Lines Matching defs:width

75       A6XX_GRAS_2D_DST_BR(.x = dst->x + extent->width - 1, .y = dst->y + extent->height - 1));
82 A6XX_GRAS_2D_SRC_BR_X(src->x + extent->width - 1),
247 uint32_t width, uint32_t height,
261 A6XX_SP_PS_2D_SRC_SIZE(.width = width, .height = height),
847 dst->x + extent->width, dst->y + extent->height,
848 src_x1 + extent->width, src_y1 + extent->height,
983 uint32_t width, uint32_t height,
1000 desc[1] = A6XX_TEX_CONST_1_WIDTH(width) | A6XX_TEX_CONST_1_HEIGHT(height);
1043 A6XX_TEX_CONST_2_PITCH(cmd->state.tiling->tile0.width * cpp);
1280 uint32_t width, uint32_t height,
1671 uint32_t *width,
1684 extent->width = DIV_ROUND_UP(extent->width, block_width);
1687 if (width)
1688 *width = DIV_ROUND_UP(*width, block_width);
1719 uint32_t src_width = info->bufferRowLength ?: extent.width;
1742 x + extent.width, 1, dst_format);
1744 &(VkExtent2D) {extent.width, 1});
1749 ops->src_buffer(cmd, cs, src_format, src_va, pitch, extent.width, extent.height, dst_format);
1800 uint32_t dst_width = info->bufferRowLength ?: extent.width;
1823 &(VkExtent2D) {extent.width, 1});
1976 extent.width,
2109 uint32_t width = MIN2(MIN2(blocks, 0x4000 - src_x), 0x4000 - dst_x);
2111 ops->src_buffer(cmd, cs, format, src_va & ~63, 0, src_x + width, 1, format);
2113 ops->coords(cs, &(VkOffset2D) {dst_x}, &(VkOffset2D) {src_x}, &(VkExtent2D) {width, 1});
2116 src_va += width * block_size;
2117 dst_va += width * block_size;
2118 blocks -= width;
2187 uint32_t width = MIN2(blocks, 0x4000 - dst_x);
2190 ops->coords(cs, &(VkOffset2D) {dst_x}, NULL, &(VkExtent2D) {width, 1});
2193 dst_va += width * 4;
2194 blocks -= width;
2582 rects[i].rect.offset.x + rects[i].rect.extent.width,
2749 unsigned x2 = x1 + rects[i].rect.extent.width - 1;
3163 A6XX_SP_PS_2D_SRC_SIZE( .width = 0x3fff, .height = 0x3fff),
3165 A6XX_SP_PS_2D_SRC_PITCH(.pitch = cmd->state.tiling->tile0.width * cpp));
3265 uint32_t x2 = x1 + render_area->extent.width;
3275 (x2 % phys_dev->info->gmem_align_w && x2 != iview->view.width) ||