Lines Matching refs:cubicInterpolate
71 static float4 cubicInterpolate(float4 p0,float4 p1,float4 p2,float4 p3, float x) {
76 static float2 cubicInterpolate(float2 p0,float2 p1,float2 p2,float2 p3, float x) {
81 static float cubicInterpolate(float p0,float p1,float p2,float p3 , float x) {
96 float4 p0 = cubicInterpolate(convert_float4(yp0[xs0]),
101 float4 p1 = cubicInterpolate(convert_float4(yp1[xs0]),
106 float4 p2 = cubicInterpolate(convert_float4(yp2[xs0]),
111 float4 p3 = cubicInterpolate(convert_float4(yp3[xs0]),
116 float4 p = cubicInterpolate(p0, p1, p2, p3, yf);
131 float2 p0 = cubicInterpolate(convert_float2(yp0[xs0]),
136 float2 p1 = cubicInterpolate(convert_float2(yp1[xs0]),
141 float2 p2 = cubicInterpolate(convert_float2(yp2[xs0]),
146 float2 p3 = cubicInterpolate(convert_float2(yp3[xs0]),
151 float2 p = cubicInterpolate(p0, p1, p2, p3, yf);
166 float p0 = cubicInterpolate((float)yp0[xs0], (float)yp0[xs1],
168 float p1 = cubicInterpolate((float)yp1[xs0], (float)yp1[xs1],
170 float p2 = cubicInterpolate((float)yp2[xs0], (float)yp2[xs1],
172 float p3 = cubicInterpolate((float)yp3[xs0], (float)yp3[xs1],
175 float p = cubicInterpolate(p0, p1, p2, p3, yf);
247 float4 p0 = cubicInterpolate(yp0[xs0], yp0[xs1],
249 float4 p1 = cubicInterpolate(yp1[xs0], yp1[xs1],
251 float4 p2 = cubicInterpolate(yp2[xs0], yp2[xs1],
253 float4 p3 = cubicInterpolate(yp3[xs0], yp3[xs1],
256 float4 p = cubicInterpolate(p0, p1, p2, p3, yf);
270 float2 p0 = cubicInterpolate(yp0[xs0], yp0[xs1],
272 float2 p1 = cubicInterpolate(yp1[xs0], yp1[xs1],
274 float2 p2 = cubicInterpolate(yp2[xs0], yp2[xs1],
276 float2 p3 = cubicInterpolate(yp3[xs0], yp3[xs1],
279 float2 p = cubicInterpolate(p0, p1, p2, p3, yf);
293 float p0 = cubicInterpolate(yp0[xs0], yp0[xs1],
295 float p1 = cubicInterpolate(yp1[xs0], yp1[xs1],
297 float p2 = cubicInterpolate(yp2[xs0], yp2[xs1],
299 float p3 = cubicInterpolate(yp3[xs0], yp3[xs1],
302 float p = cubicInterpolate(p0, p1, p2, p3, yf);