Searched defs:cheight (Results 1 - 3 of 3) sorted by relevance

/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_dma.c148 unsigned ncopy, height, cheight, i; local
198 cheight = copy_height;
199 if (cheight * pitch > SI_DMA_COPY_MAX_DWORD_ALIGNED_SIZE) {
200 cheight = SI_DMA_COPY_MAX_DWORD_ALIGNED_SIZE / pitch;
202 size = cheight * pitch;
214 copy_height -= cheight;
215 addr += cheight * pitch;
216 tiled_y += cheight;
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_state.c2824 unsigned ncopy, height, cheight, detile, i, x, y, z, src_mode, dst_mode; local
2882 cheight = ((R600_DMA_COPY_MAX_SIZE_DW * 4) / pitch) & 0xfffffff8;
2883 ncopy = (copy_height / cheight) + !!(copy_height % cheight);
2887 cheight = cheight > copy_height ? copy_height : cheight;
2888 size = (cheight * pitch) / 4;
2903 copy_height -= cheight;
2904 addr += cheight * pitc
[all...]
H A Devergreen_state.c3356 unsigned ncopy, height, cheight, detile, i, x, y, z, src_mode, dst_mode; local
3431 cheight = copy_height;
3432 if (((cheight * pitch) / 4) > EG_DMA_COPY_MAX_SIZE) {
3433 cheight = (EG_DMA_COPY_MAX_SIZE * 4) / pitch;
3435 size = (cheight * pitch) / 4;
3452 copy_height -= cheight;
3453 addr += cheight * pitch;
3454 y += cheight;

Completed in 153 milliseconds