Lines Matching refs:float2
76 static float2 cubicInterpolate(float2 p0,float2 p1,float2 p2,float2 p3, float x) { in cubicInterpolate()
131 float2 p0 = cubicInterpolate(convert_float2(yp0[xs0]), in OneBiCubic()
136 float2 p1 = cubicInterpolate(convert_float2(yp1[xs0]), in OneBiCubic()
141 float2 p2 = cubicInterpolate(convert_float2(yp2[xs0]), in OneBiCubic()
146 float2 p3 = cubicInterpolate(convert_float2(yp3[xs0]), in OneBiCubic()
151 float2 p = cubicInterpolate(p0, p1, p2, p3, yf); in OneBiCubic()
260 static float2 OneBiCubic(const float2 *yp0, const float2 *yp1, const float2 *yp2, const float2 *yp3, in OneBiCubic()
270 float2 p0 = cubicInterpolate(yp0[xs0], yp0[xs1], in OneBiCubic()
272 float2 p1 = cubicInterpolate(yp1[xs0], yp1[xs1], in OneBiCubic()
274 float2 p2 = cubicInterpolate(yp2[xs0], yp2[xs1], in OneBiCubic()
276 float2 p3 = cubicInterpolate(yp3[xs0], yp3[xs1], in OneBiCubic()
279 float2 p = cubicInterpolate(p0, p1, p2, p3, yf); in OneBiCubic()
570 const float2 *yp0 = (const float2 *)(pin + stride * ys0); in kernelF2()
571 const float2 *yp1 = (const float2 *)(pin + stride * ys1); in kernelF2()
572 const float2 *yp2 = (const float2 *)(pin + stride * ys2); in kernelF2()
573 const float2 *yp3 = (const float2 *)(pin + stride * ys3); in kernelF2()
575 float2 *out = ((float2 *)info->outPtr[0]) + xstart; in kernelF2()