Home | History | Annotate | Download | only in cpu_ref

Lines Matching refs:uchar

66 static uchar4 rsYuvToRGBA_uchar4(uchar y, uchar u, uchar v) {
95 return (uchar4){static_cast<uchar>(p.x), static_cast<uchar>(p.y),
96 static_cast<uchar>(p.z), static_cast<uchar>(p.w)};
100 extern "C" void rsdIntrinsicYuv_K(void *dst, const uchar *Y, const uchar *uv, uint32_t xstart, size_t xend);
101 extern "C" void rsdIntrinsicYuvR_K(void *dst, const uchar *Y, const uchar *uv, uint32_t xstart, size_t xend);
102 extern "C" void rsdIntrinsicYuv2_K(void *dst, const uchar *Y, const uchar *u, const uchar *v, size_t xstart, size_t xend);
112 const uchar *pinY = (const uchar *)cp->alloc->mHal.drvState.lod[0].mallocPtr;
124 const uchar *Y = pinY + (info->current.y * strideY);
132 const uchar *pinU = (const uchar *)cp->alloc->mHal.drvState.lod[1].mallocPtr;
134 const uchar *u = pinU + ((info->current.y >> 1) * strideU);
136 const uchar *pinV = (const uchar *)cp->alloc->mHal.drvState.lod[2].mallocPtr;
138 const uchar *v = pinV + ((info->current.y >> 1) * strideV);