Lines Matching refs:ycbcr

330 …module, buffer_handle_t handle, int usage, int l, int t, int w, int h, struct android_ycbcr *ycbcr)  in gralloc_lock_ycbcr()  argument
361 ycbcr->y = (void *)hnd->base; in gralloc_lock_ycbcr()
362 ycbcr->cr = (void *)((unsigned char *)hnd->base + ystride * hnd->height); in gralloc_lock_ycbcr()
363 ycbcr->cb = (void *)((unsigned char *)hnd->base + ystride * hnd->height + 1); in gralloc_lock_ycbcr()
364 ycbcr->ystride = ystride; in gralloc_lock_ycbcr()
365 ycbcr->cstride = cstride; in gralloc_lock_ycbcr()
366 ycbcr->chroma_step = 2; in gralloc_lock_ycbcr()
374 ycbcr->y = (void *)hnd->base; in gralloc_lock_ycbcr()
376 ycbcr->cr = (void *)((unsigned char *)hnd->base + ystride * GRALLOC_ALIGN(hnd->height, 2)); in gralloc_lock_ycbcr()
377ycbcr->cb = (void *)((unsigned char *)hnd->base + ystride * GRALLOC_ALIGN(hnd->height, 2) + cstrid… in gralloc_lock_ycbcr()
378 ycbcr->ystride = ystride; in gralloc_lock_ycbcr()
379 ycbcr->cstride = cstride; in gralloc_lock_ycbcr()
380 ycbcr->chroma_step = 1; in gralloc_lock_ycbcr()
387 ycbcr->y = (void *)hnd->base; in gralloc_lock_ycbcr()
388 ycbcr->cb = (void *)((unsigned char *)hnd->base + ystride * hnd->height); in gralloc_lock_ycbcr()
389 ycbcr->cr = (void *)((unsigned char *)hnd->base + ystride * hnd->height + 1); in gralloc_lock_ycbcr()
390 ycbcr->ystride = ystride; in gralloc_lock_ycbcr()
391 ycbcr->cstride = cstride; in gralloc_lock_ycbcr()
392 ycbcr->chroma_step = 2; in gralloc_lock_ycbcr()
489 …r_handle_t handle, int usage, int l, int t, int w, int h, struct android_ycbcr *ycbcr, int fenceFD) in gralloc_lock_async_ycbcr() argument
497 return gralloc_lock_ycbcr(module, handle, usage, l, t, w, h, ycbcr); in gralloc_lock_async_ycbcr()