Lines Matching refs:yp2
86 static uchar4 OneBiCubic(const uchar4 *yp0, const uchar4 *yp1, const uchar4 *yp2, const uchar4 *yp3, in OneBiCubic() argument
106 float4 p2 = cubicInterpolate(convert_float4(yp2[xs0]), in OneBiCubic()
107 convert_float4(yp2[xs1]), in OneBiCubic()
108 convert_float4(yp2[xs2]), in OneBiCubic()
109 convert_float4(yp2[xs3]), xf); in OneBiCubic()
121 static uchar2 OneBiCubic(const uchar2 *yp0, const uchar2 *yp1, const uchar2 *yp2, const uchar2 *yp3, in OneBiCubic() argument
141 float2 p2 = cubicInterpolate(convert_float2(yp2[xs0]), in OneBiCubic()
142 convert_float2(yp2[xs1]), in OneBiCubic()
143 convert_float2(yp2[xs2]), in OneBiCubic()
144 convert_float2(yp2[xs3]), xf); in OneBiCubic()
156 static uchar OneBiCubic(const uchar *yp0, const uchar *yp1, const uchar *yp2, const uchar *yp3, in OneBiCubic() argument
170 float p2 = cubicInterpolate((float)yp2[xs0], (float)yp2[xs1], in OneBiCubic()
171 (float)yp2[xs2], (float)yp2[xs3], xf); in OneBiCubic()
237 static float4 OneBiCubic(const float4 *yp0, const float4 *yp1, const float4 *yp2, const float4 *yp3, in OneBiCubic() argument
251 float4 p2 = cubicInterpolate(yp2[xs0], yp2[xs1], in OneBiCubic()
252 yp2[xs2], yp2[xs3], xf); in OneBiCubic()
260 static float2 OneBiCubic(const float2 *yp0, const float2 *yp1, const float2 *yp2, const float2 *yp3, in OneBiCubic() argument
274 float2 p2 = cubicInterpolate(yp2[xs0], yp2[xs1], in OneBiCubic()
275 yp2[xs2], yp2[xs3], xf); in OneBiCubic()
283 static float OneBiCubic(const float *yp0, const float *yp1, const float *yp2, const float *yp3, in OneBiCubic() argument
297 float p2 = cubicInterpolate(yp2[xs0], yp2[xs1], in OneBiCubic()
298 yp2[xs2], yp2[xs3], xf); in OneBiCubic()
331 const uchar4 *yp2 = (const uchar4 *)(pin + stride * ys2); in kernelU4() local
357 yp0 + xoff, yp1 + xoff, yp2 + xoff, yp3 + xoff, in kernelU4()
367 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelU4()
398 const uchar2 *yp2 = (const uchar2 *)(pin + stride * ys2); in kernelU2() local
424 yp0 + xoff, yp1 + xoff, yp2 + xoff, yp3 + xoff, in kernelU2()
434 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelU2()
465 const uchar *yp2 = pin + stride * ys2; in kernelU1() local
491 yp0 + xoff, yp1 + xoff, yp2 + xoff, yp3 + xoff, in kernelU1()
501 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelU1()
532 const float4 *yp2 = (const float4 *)(pin + stride * ys2); in kernelF4() local
541 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelF4()
572 const float2 *yp2 = (const float2 *)(pin + stride * ys2); in kernelF2() local
581 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelF2()
612 const float *yp2 = (const float *)(pin + stride * ys2); in kernelF1() local
621 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelF1()