Lines Matching refs:yp0
84 static uchar4 OneBiCubic(const uchar4 *yp0, const uchar4 *yp1, const uchar4 *yp2, const uchar4 *yp3, in OneBiCubic() argument
94 float4 p0 = cubicInterpolate(convert_float4(yp0[xs0]), in OneBiCubic()
95 convert_float4(yp0[xs1]), in OneBiCubic()
96 convert_float4(yp0[xs2]), in OneBiCubic()
97 convert_float4(yp0[xs3]), xf); in OneBiCubic()
119 static uchar2 OneBiCubic(const uchar2 *yp0, const uchar2 *yp1, const uchar2 *yp2, const uchar2 *yp3, in OneBiCubic() argument
129 float2 p0 = cubicInterpolate(convert_float2(yp0[xs0]), in OneBiCubic()
130 convert_float2(yp0[xs1]), in OneBiCubic()
131 convert_float2(yp0[xs2]), in OneBiCubic()
132 convert_float2(yp0[xs3]), xf); in OneBiCubic()
154 static uchar OneBiCubic(const uchar *yp0, const uchar *yp1, const uchar *yp2, const uchar *yp3, in OneBiCubic() argument
164 float p0 = cubicInterpolate((float)yp0[xs0], (float)yp0[xs1], in OneBiCubic()
165 (float)yp0[xs2], (float)yp0[xs3], xf); in OneBiCubic()
201 const uchar4 *yp0 = (const uchar4 *)(pin + stride * ys0); in kernelU4() local
212 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelU4()
241 const uchar2 *yp0 = (const uchar2 *)(pin + stride * ys0); in kernelU2() local
252 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelU2()
281 const uchar *yp0 = pin + stride * ys0; in kernelU1() local
292 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelU1()