Home | History | Annotate | Download | only in libgralloc

Lines Matching defs:ystride

254     int ystride, cstride;
261 ystride = ALIGN(hnd->width, 16);
263 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height);
264 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height + 1);
265 ycbcr->ystride = ystride;
266 ycbcr->cstride = ystride;
270 ystride = cstride = hnd->width;
272 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height);
273 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height + 1);
274 ycbcr->ystride = ystride;