Lines Matching refs:yp3
86 static uchar4 OneBiCubic(const uchar4 *yp0, const uchar4 *yp1, const uchar4 *yp2, const uchar4 *yp3, in OneBiCubic() argument
111 float4 p3 = cubicInterpolate(convert_float4(yp3[xs0]), in OneBiCubic()
112 convert_float4(yp3[xs1]), in OneBiCubic()
113 convert_float4(yp3[xs2]), in OneBiCubic()
114 convert_float4(yp3[xs3]), xf); in OneBiCubic()
121 static uchar2 OneBiCubic(const uchar2 *yp0, const uchar2 *yp1, const uchar2 *yp2, const uchar2 *yp3, in OneBiCubic() argument
146 float2 p3 = cubicInterpolate(convert_float2(yp3[xs0]), in OneBiCubic()
147 convert_float2(yp3[xs1]), in OneBiCubic()
148 convert_float2(yp3[xs2]), in OneBiCubic()
149 convert_float2(yp3[xs3]), xf); in OneBiCubic()
156 static uchar OneBiCubic(const uchar *yp0, const uchar *yp1, const uchar *yp2, const uchar *yp3, in OneBiCubic() argument
172 float p3 = cubicInterpolate((float)yp3[xs0], (float)yp3[xs1], in OneBiCubic()
173 (float)yp3[xs2], (float)yp3[xs3], xf); in OneBiCubic()
237 static float4 OneBiCubic(const float4 *yp0, const float4 *yp1, const float4 *yp2, const float4 *yp3, in OneBiCubic() argument
253 float4 p3 = cubicInterpolate(yp3[xs0], yp3[xs1], in OneBiCubic()
254 yp3[xs2], yp3[xs3], xf); in OneBiCubic()
260 static float2 OneBiCubic(const float2 *yp0, const float2 *yp1, const float2 *yp2, const float2 *yp3, in OneBiCubic() argument
276 float2 p3 = cubicInterpolate(yp3[xs0], yp3[xs1], in OneBiCubic()
277 yp3[xs2], yp3[xs3], xf); in OneBiCubic()
283 static float OneBiCubic(const float *yp0, const float *yp1, const float *yp2, const float *yp3, in OneBiCubic() argument
299 float p3 = cubicInterpolate(yp3[xs0], yp3[xs1], in OneBiCubic()
300 yp3[xs2], yp3[xs3], xf); in OneBiCubic()
332 const uchar4 *yp3 = (const uchar4 *)(pin + stride * ys3); 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()
399 const uchar2 *yp3 = (const uchar2 *)(pin + stride * ys3); 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()
466 const uchar *yp3 = pin + stride * ys3; 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()
533 const float4 *yp3 = (const float4 *)(pin + stride * ys3); in kernelF4() local
541 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelF4()
573 const float2 *yp3 = (const float2 *)(pin + stride * ys3); in kernelF2() local
581 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelF2()
613 const float *yp3 = (const float *)(pin + stride * ys3); in kernelF1() local
621 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelF1()