Lines Matching refs:yp3
127 static uchar4 OneBiCubic(const uchar4 *yp0, const uchar4 *yp1, const uchar4 *yp2, const uchar4 *yp3, in OneBiCubic() argument
152 float4 p3 = cubicInterpolate(convert<float4>(yp3[xs0]), in OneBiCubic()
153 convert<float4>(yp3[xs1]), in OneBiCubic()
154 convert<float4>(yp3[xs2]), in OneBiCubic()
155 convert<float4>(yp3[xs3]), xf); in OneBiCubic()
162 static uchar2 OneBiCubic(const uchar2 *yp0, const uchar2 *yp1, const uchar2 *yp2, const uchar2 *yp3, in OneBiCubic() argument
187 float2 p3 = cubicInterpolate(convert<float2>(yp3[xs0]), in OneBiCubic()
188 convert<float2>(yp3[xs1]), in OneBiCubic()
189 convert<float2>(yp3[xs2]), in OneBiCubic()
190 convert<float2>(yp3[xs3]), xf); in OneBiCubic()
197 static uchar OneBiCubic(const uchar *yp0, const uchar *yp1, const uchar *yp2, const uchar *yp3, in OneBiCubic() argument
213 float p3 = cubicInterpolate((float)yp3[xs0], (float)yp3[xs1], in OneBiCubic()
214 (float)yp3[xs2], (float)yp3[xs3], xf); in OneBiCubic()
280 static float4 OneBiCubic(const float4 *yp0, const float4 *yp1, const float4 *yp2, const float4 *yp3, in OneBiCubic() argument
296 float4 p3 = cubicInterpolate(yp3[xs0], yp3[xs1], in OneBiCubic()
297 yp3[xs2], yp3[xs3], xf); in OneBiCubic()
303 static float2 OneBiCubic(const float2 *yp0, const float2 *yp1, const float2 *yp2, const float2 *yp3, in OneBiCubic() argument
319 float2 p3 = cubicInterpolate(yp3[xs0], yp3[xs1], in OneBiCubic()
320 yp3[xs2], yp3[xs3], xf); in OneBiCubic()
326 static float OneBiCubic(const float *yp0, const float *yp1, const float *yp2, const float *yp3, in OneBiCubic() argument
342 float p3 = cubicInterpolate(yp3[xs0], yp3[xs1], in OneBiCubic()
343 yp3[xs2], yp3[xs3], xf); in OneBiCubic()
376 const uchar4 *yp3 = (const uchar4 *)(pin + stride * ys3); in kernelU4() local
401 yp0 + xoff, yp1 + xoff, yp2 + xoff, yp3 + xoff, in kernelU4()
416 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelU4()
447 const uchar2 *yp3 = (const uchar2 *)(pin + stride * ys3); in kernelU2() local
472 yp0 + xoff, yp1 + xoff, yp2 + xoff, yp3 + xoff, in kernelU2()
488 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelU2()
522 const uchar *yp3 = pin + stride * ys3; in kernelU1() local
555 yp0 + xoff, yp1 + xoff, yp2 + xoff, yp3 + xoff, in kernelU1()
572 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelU1()
603 const float4 *yp3 = (const float4 *)(pin + stride * ys3); in kernelF4() local
618 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelF4()
649 const float2 *yp3 = (const float2 *)(pin + stride * ys3); in kernelF2() local
664 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelF2()
695 const float *yp3 = (const float *)(pin + stride * ys3); in kernelF1() local
710 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelF1()