• Home
  • Raw
  • Download

Lines Matching refs:yp3

101 static uchar4 OneBiCubic(const uchar4 *yp0, const uchar4 *yp1, const uchar4 *yp2, const uchar4 *yp3,  in OneBiCubic()  argument
126 float4 p3 = cubicInterpolate(convert_float4(yp3[xs0]), in OneBiCubic()
127 convert_float4(yp3[xs1]), in OneBiCubic()
128 convert_float4(yp3[xs2]), in OneBiCubic()
129 convert_float4(yp3[xs3]), xf); in OneBiCubic()
136 static uchar2 OneBiCubic(const uchar2 *yp0, const uchar2 *yp1, const uchar2 *yp2, const uchar2 *yp3, in OneBiCubic() argument
161 float2 p3 = cubicInterpolate(convert_float2(yp3[xs0]), in OneBiCubic()
162 convert_float2(yp3[xs1]), in OneBiCubic()
163 convert_float2(yp3[xs2]), in OneBiCubic()
164 convert_float2(yp3[xs3]), xf); in OneBiCubic()
171 static uchar OneBiCubic(const uchar *yp0, const uchar *yp1, const uchar *yp2, const uchar *yp3, in OneBiCubic() argument
187 float p3 = cubicInterpolate((float)yp3[xs0], (float)yp3[xs1], in OneBiCubic()
188 (float)yp3[xs2], (float)yp3[xs3], xf); in OneBiCubic()
252 static float4 OneBiCubic(const float4 *yp0, const float4 *yp1, const float4 *yp2, const float4 *yp3, in OneBiCubic() argument
268 float4 p3 = cubicInterpolate(yp3[xs0], yp3[xs1], in OneBiCubic()
269 yp3[xs2], yp3[xs3], xf); in OneBiCubic()
275 static float2 OneBiCubic(const float2 *yp0, const float2 *yp1, const float2 *yp2, const float2 *yp3, in OneBiCubic() argument
291 float2 p3 = cubicInterpolate(yp3[xs0], yp3[xs1], in OneBiCubic()
292 yp3[xs2], yp3[xs3], xf); in OneBiCubic()
298 static float OneBiCubic(const float *yp0, const float *yp1, const float *yp2, const float *yp3, in OneBiCubic() argument
314 float p3 = cubicInterpolate(yp3[xs0], yp3[xs1], in OneBiCubic()
315 yp3[xs2], yp3[xs3], xf); in OneBiCubic()
354 const uchar4 *yp3 = (const uchar4 *)(pin + stride * ys3); in kernelU4() local
379 yp0 + xoff, yp1 + xoff, yp2 + xoff, yp3 + xoff, in kernelU4()
393 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelU4()
431 const uchar2 *yp3 = (const uchar2 *)(pin + stride * ys3); in kernelU2() local
456 yp0 + xoff, yp1 + xoff, yp2 + xoff, yp3 + xoff, in kernelU2()
471 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelU2()
509 const uchar *yp3 = pin + stride * ys3; in kernelU1() local
534 yp0 + xoff, yp1 + xoff, yp2 + xoff, yp3 + xoff, in kernelU1()
550 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelU1()
587 const float4 *yp3 = (const float4 *)(pin + stride * ys3); in kernelF4() local
601 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelF4()
639 const float2 *yp3 = (const float2 *)(pin + stride * ys3); in kernelF2() local
653 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelF2()
691 const float *yp3 = (const float *)(pin + stride * ys3); in kernelF1() local
705 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelF1()