• Home
  • Raw
  • Download

Lines Matching refs:yp0

86 static uchar4 OneBiCubic(const uchar4 *yp0, const uchar4 *yp1, const uchar4 *yp2, const uchar4 *yp3,  in OneBiCubic()  argument
96 float4 p0 = cubicInterpolate(convert_float4(yp0[xs0]), in OneBiCubic()
97 convert_float4(yp0[xs1]), in OneBiCubic()
98 convert_float4(yp0[xs2]), in OneBiCubic()
99 convert_float4(yp0[xs3]), xf); in OneBiCubic()
121 static uchar2 OneBiCubic(const uchar2 *yp0, const uchar2 *yp1, const uchar2 *yp2, const uchar2 *yp3, in OneBiCubic() argument
131 float2 p0 = cubicInterpolate(convert_float2(yp0[xs0]), in OneBiCubic()
132 convert_float2(yp0[xs1]), in OneBiCubic()
133 convert_float2(yp0[xs2]), in OneBiCubic()
134 convert_float2(yp0[xs3]), xf); in OneBiCubic()
156 static uchar OneBiCubic(const uchar *yp0, const uchar *yp1, const uchar *yp2, const uchar *yp3, in OneBiCubic() argument
166 float p0 = cubicInterpolate((float)yp0[xs0], (float)yp0[xs1], in OneBiCubic()
167 (float)yp0[xs2], (float)yp0[xs3], xf); in OneBiCubic()
237 static float4 OneBiCubic(const float4 *yp0, const float4 *yp1, const float4 *yp2, const float4 *yp3, in OneBiCubic() argument
247 float4 p0 = cubicInterpolate(yp0[xs0], yp0[xs1], in OneBiCubic()
248 yp0[xs2], yp0[xs3], xf); in OneBiCubic()
260 static float2 OneBiCubic(const float2 *yp0, const float2 *yp1, const float2 *yp2, const float2 *yp3, in OneBiCubic() argument
270 float2 p0 = cubicInterpolate(yp0[xs0], yp0[xs1], in OneBiCubic()
271 yp0[xs2], yp0[xs3], xf); in OneBiCubic()
283 static float OneBiCubic(const float *yp0, const float *yp1, const float *yp2, const float *yp3, in OneBiCubic() argument
293 float p0 = cubicInterpolate(yp0[xs0], yp0[xs1], in OneBiCubic()
294 yp0[xs2], yp0[xs3], xf); in OneBiCubic()
329 const uchar4 *yp0 = (const uchar4 *)(pin + stride * ys0); 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()
396 const uchar2 *yp0 = (const uchar2 *)(pin + stride * ys0); 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()
463 const uchar *yp0 = pin + stride * ys0; 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()
530 const float4 *yp0 = (const float4 *)(pin + stride * ys0); in kernelF4() local
541 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelF4()
570 const float2 *yp0 = (const float2 *)(pin + stride * ys0); in kernelF2() local
581 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelF2()
610 const float *yp0 = (const float *)(pin + stride * ys0); in kernelF1() local
621 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelF1()