Lines Matching refs:float2
81 static float2 cubicInterpolate(float2 p0,float2 p1,float2 p2,float2 p3, float x) { in cubicInterpolate()
146 float2 p0 = cubicInterpolate(convert_float2(yp0[xs0]), in OneBiCubic()
151 float2 p1 = cubicInterpolate(convert_float2(yp1[xs0]), in OneBiCubic()
156 float2 p2 = cubicInterpolate(convert_float2(yp2[xs0]), in OneBiCubic()
161 float2 p3 = cubicInterpolate(convert_float2(yp3[xs0]), in OneBiCubic()
166 float2 p = cubicInterpolate(p0, p1, p2, p3, yf); in OneBiCubic()
275 static float2 OneBiCubic(const float2 *yp0, const float2 *yp1, const float2 *yp2, const float2 *yp3, in OneBiCubic()
285 float2 p0 = cubicInterpolate(yp0[xs0], yp0[xs1], in OneBiCubic()
287 float2 p1 = cubicInterpolate(yp1[xs0], yp1[xs1], in OneBiCubic()
289 float2 p2 = cubicInterpolate(yp2[xs0], yp2[xs1], in OneBiCubic()
291 float2 p3 = cubicInterpolate(yp3[xs0], yp3[xs1], in OneBiCubic()
294 float2 p = cubicInterpolate(p0, p1, p2, p3, yf); in OneBiCubic()
636 const float2 *yp0 = (const float2 *)(pin + stride * ys0); in kernelF2()
637 const float2 *yp1 = (const float2 *)(pin + stride * ys1); in kernelF2()
638 const float2 *yp2 = (const float2 *)(pin + stride * ys2); in kernelF2()
639 const float2 *yp3 = (const float2 *)(pin + stride * ys3); in kernelF2()
641 float2 *out = ((float2 *)info->outPtr[0]) + xstart; in kernelF2()