Searched refs:copy_width (Results 1 - 11 of 11) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/
H A Dcik_sdma.c141 unsigned copy_width = DIV_ROUND_UP(src_box->width, ssrc->surface.blk_w); local in function:cik_sdma_copy_texture
180 copy_width <= (1 << 14) &&
185 (copy_width < (1 << 14) &&
191 (srcx + copy_width != (1 << 14) &&
211 radeon_emit(cs, copy_width | (copy_height << 16));
214 radeon_emit(cs, (copy_width - 1) | ((copy_height - 1) << 16));
247 unsigned copy_width_aligned = copy_width;
253 if (copy_width % xalign != 0 &&
254 linear_x + copy_width == linear_width &&
255 tiled_x + copy_width
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/
H A Dsi_sdma_copy_image.c120 unsigned copy_width = DIV_ROUND_UP(ssrc->buffer.b.b.width0, ssrc->surface.blk_w); local in function:si_sdma_v4_v5_copy_texture
172 copy_width < (1 << 14) && copy_height < (1 << 14)))
197 radeon_emit((copy_width - 1) | ((copy_height - 1) << 16));
249 unsigned copy_width = DIV_ROUND_UP(ssrc->buffer.b.b.width0, ssrc->surface.blk_w); local in function:cik_sdma_copy_texture
259 dst_slice_pitch <= (1 << 28) && copy_width <= (1 << 14) && copy_height <= (1 << 14) &&
262 (copy_width < (1 << 14) && copy_height < (1 << 14))) &&
265 (copy_width != (1 << 14) && copy_height != (1 << 14)))) {
282 radeon_emit(copy_width | (copy_height << 16));
285 radeon_emit((copy_width - 1) | ((copy_height - 1) << 16));
311 unsigned copy_width_aligned = copy_width;
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/egl/drivers/dri2/
H A Dplatform_wayland.c1907 int copy_width = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, w); local in function:dri2_wl_swrast_get_image
1910 int dst_stride = copy_width;
1915 memset(data, 0, copy_width * h);
1920 assert(copy_width <= src_stride);
1926 if (copy_width > src_stride-x_offset)
1927 copy_width = src_stride-x_offset;
1932 memcpy(dst, src, copy_width);
1944 int copy_width = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, w); local in function:dri2_wl_swrast_put_image2
1949 assert(copy_width <= stride);
1955 if (copy_width < dst_strid
[all...]
/xsrc/external/mit/MesaLib/dist/src/egl/drivers/dri2/
H A Dplatform_wayland.c1908 int copy_width = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, w); local in function:dri2_wl_swrast_get_image
1911 int dst_stride = copy_width;
1916 memset(data, 0, copy_width * h);
1921 assert(copy_width <= src_stride);
1927 if (copy_width > src_stride-x_offset)
1928 copy_width = src_stride-x_offset;
1933 memcpy(dst, src, copy_width);
1945 int copy_width = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, w); local in function:dri2_wl_swrast_put_image2
1950 assert(copy_width <= stride);
1956 if (copy_width < dst_strid
[all...]
H A Degl_dri2.c218 int copy_width = src_stride; local in function:dri2_put_image
231 if (copy_width > dst_stride - x_offset)
232 copy_width = dst_stride - x_offset;
237 memcpy(dst, src, copy_width);
256 int copy_width = dst_stride; local in function:dri2_get_image
261 memset(data, 0, copy_width * h);
269 if (copy_width > src_stride - x_offset)
270 copy_width = src_stride - x_offset;
275 memcpy(dst, src, copy_width);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/nine/
H A Dsurface9.c639 int src_x, src_y, dst_x, dst_y, copy_width, copy_height; local in function:NineSurface9_CopyMemToDefault
655 copy_width = pSourceRect->right - pSourceRect->left;
660 copy_width = From->desc.Width;
665 copy_width, copy_height, &dst_box);
667 copy_width, copy_height, &src_box);
701 copy_width, copy_height);
H A Ddevice9.c1293 int copy_width, copy_height; local in function:NineDevice9_UpdateSurface
1321 copy_width = pSourceRect->right - pSourceRect->left;
1325 copy_width > 0 &&
1332 copy_width = src->desc.Width;
1336 destRect.right = copy_width;
1363 if (!(copy_width == src->desc.Width &&
1364 copy_width == dst->desc.Width &&
1367 user_assert(!(copy_width % w) && !(copy_height % h),
/xsrc/external/mit/MesaLib/dist/src/gallium/frontends/nine/
H A Dsurface9.c654 int src_x, src_y, dst_x, dst_y, copy_width, copy_height; local in function:NineSurface9_CopyMemToDefault
670 copy_width = pSourceRect->right - pSourceRect->left;
675 copy_width = From->desc.Width;
680 copy_width, copy_height, &dst_box);
682 copy_width, copy_height, &src_box);
693 copy_width, copy_height);
H A Ddevice9.c1402 int copy_width, copy_height; local in function:NineDevice9_UpdateSurface
1430 copy_width = pSourceRect->right - pSourceRect->left;
1434 copy_width > 0 &&
1441 copy_width = src->desc.Width;
1445 destRect.right = copy_width;
1472 if (!(copy_width == src->desc.Width &&
1473 copy_width == dst->desc.Width &&
1476 user_assert(!(copy_width % w) && !(copy_height % h),
/xsrc/external/mit/xterm/dist/
H A Dutil.c2210 screen->copy_width = width;
2338 int both_x2 = Min(screen->copy_src_x + (int) screen->copy_width,
H A Dptyx.h2771 unsigned int copy_width; member in struct:__anon7e1168c34108

Completed in 43 milliseconds