Lines Matching refs:ystride
353 ycbcr->ystride = y_stride; in GetYuvUbwcSPPlaneInfo()
359 unsigned int ystride, cstride; in GetYuvSPPlaneInfo() local
361 ystride = cstride = UINT(width) * bpp; in GetYuvSPPlaneInfo()
363 ycbcr->cb = reinterpret_cast<void *>(base + ystride * UINT(height)); in GetYuvSPPlaneInfo()
364 ycbcr->cr = reinterpret_cast<void *>(base + ystride * UINT(height) + 1); in GetYuvSPPlaneInfo()
365 ycbcr->ystride = ystride; in GetYuvSPPlaneInfo()
377 unsigned int ystride, cstride; in GetYUVPlaneInfo() local
442 ystride = width; in GetYUVPlaneInfo()
445 ycbcr->cr = reinterpret_cast<void *>(hnd->base + ystride * height); in GetYUVPlaneInfo()
446 ycbcr->cb = reinterpret_cast<void *>(hnd->base + ystride * height + cstride * height / 2); in GetYUVPlaneInfo()
447 ycbcr->ystride = ystride; in GetYUVPlaneInfo()