Lines Matching refs:float2
83 static float2 cubicInterpolate(float2 p0,float2 p1,float2 p2,float2 p3, float x) { in cubicInterpolate()
138 float2 p0 = cubicInterpolate(convert_float2(yp0[xs0]), in OneBiCubic()
143 float2 p1 = cubicInterpolate(convert_float2(yp1[xs0]), in OneBiCubic()
148 float2 p2 = cubicInterpolate(convert_float2(yp2[xs0]), in OneBiCubic()
153 float2 p3 = cubicInterpolate(convert_float2(yp3[xs0]), in OneBiCubic()
158 float2 p = cubicInterpolate(p0, p1, p2, p3, yf); in OneBiCubic()
267 static float2 OneBiCubic(const float2 *yp0, const float2 *yp1, const float2 *yp2, const float2 *yp3, in OneBiCubic()
277 float2 p0 = cubicInterpolate(yp0[xs0], yp0[xs1], in OneBiCubic()
279 float2 p1 = cubicInterpolate(yp1[xs0], yp1[xs1], in OneBiCubic()
281 float2 p2 = cubicInterpolate(yp2[xs0], yp2[xs1], in OneBiCubic()
283 float2 p3 = cubicInterpolate(yp3[xs0], yp3[xs1], in OneBiCubic()
286 float2 p = cubicInterpolate(p0, p1, p2, p3, yf); in OneBiCubic()
577 const float2 *yp0 = (const float2 *)(pin + stride * ys0); in kernelF2()
578 const float2 *yp1 = (const float2 *)(pin + stride * ys1); in kernelF2()
579 const float2 *yp2 = (const float2 *)(pin + stride * ys2); in kernelF2()
580 const float2 *yp3 = (const float2 *)(pin + stride * ys3); in kernelF2()
582 float2 *out = ((float2 *)info->outPtr[0]) + xstart; in kernelF2()