Lines Matching refs:pDstDesc
2220 const PVBOXVDMA_SURF_DESC pDstDesc, const PVBOXVDMA_SURF_DESC pSrcDesc,
2224 Assert(pDstDesc->format == pSrcDesc->format);
2228 if (pDstDesc->format != pSrcDesc->format)
2230 if (pDstDesc->width == pDstRectl->width
2232 && pSrcDesc->width == pDstDesc->width)
2236 uint32_t cbOff = pDstDesc->pitch * pDstRectl->top;
2237 uint32_t cbSize = pDstDesc->pitch * pDstRectl->height;
2242 uint32_t offDstLineStart = pDstRectl->left * pDstDesc->bpp >> 3;
2243 uint32_t offDstLineEnd = ((pDstRectl->left * pDstDesc->bpp + 7) >> 3) + ((pDstDesc->bpp * pDstRectl->width + 7) >> 3);
2245 uint32_t offDstStart = pDstDesc->pitch * pDstRectl->top + offDstLineStart;
2246 Assert(cbDstLine <= pDstDesc->pitch);
2247 uint32_t cbDstSkip = pDstDesc->pitch;