Lines Matching refs:cubicInterpolate

78 static float4 cubicInterpolate(float4 p0,float4 p1,float4 p2,float4 p3, float x) {
83 static float2 cubicInterpolate(float2 p0,float2 p1,float2 p2,float2 p3, float x) {
88 static float cubicInterpolate(float p0,float p1,float p2,float p3 , float x) {
103 float4 p0 = cubicInterpolate(convert_float4(yp0[xs0]),
108 float4 p1 = cubicInterpolate(convert_float4(yp1[xs0]),
113 float4 p2 = cubicInterpolate(convert_float4(yp2[xs0]),
118 float4 p3 = cubicInterpolate(convert_float4(yp3[xs0]),
123 float4 p = cubicInterpolate(p0, p1, p2, p3, yf);
138 float2 p0 = cubicInterpolate(convert_float2(yp0[xs0]),
143 float2 p1 = cubicInterpolate(convert_float2(yp1[xs0]),
148 float2 p2 = cubicInterpolate(convert_float2(yp2[xs0]),
153 float2 p3 = cubicInterpolate(convert_float2(yp3[xs0]),
158 float2 p = cubicInterpolate(p0, p1, p2, p3, yf);
173 float p0 = cubicInterpolate((float)yp0[xs0], (float)yp0[xs1],
175 float p1 = cubicInterpolate((float)yp1[xs0], (float)yp1[xs1],
177 float p2 = cubicInterpolate((float)yp2[xs0], (float)yp2[xs1],
179 float p3 = cubicInterpolate((float)yp3[xs0], (float)yp3[xs1],
182 float p = cubicInterpolate(p0, p1, p2, p3, yf);
254 float4 p0 = cubicInterpolate(yp0[xs0], yp0[xs1],
256 float4 p1 = cubicInterpolate(yp1[xs0], yp1[xs1],
258 float4 p2 = cubicInterpolate(yp2[xs0], yp2[xs1],
260 float4 p3 = cubicInterpolate(yp3[xs0], yp3[xs1],
263 float4 p = cubicInterpolate(p0, p1, p2, p3, yf);
277 float2 p0 = cubicInterpolate(yp0[xs0], yp0[xs1],
279 float2 p1 = cubicInterpolate(yp1[xs0], yp1[xs1],
281 float2 p2 = cubicInterpolate(yp2[xs0], yp2[xs1],
283 float2 p3 = cubicInterpolate(yp3[xs0], yp3[xs1],
286 float2 p = cubicInterpolate(p0, p1, p2, p3, yf);
300 float p0 = cubicInterpolate(yp0[xs0], yp0[xs1],
302 float p1 = cubicInterpolate(yp1[xs0], yp1[xs1],
304 float p2 = cubicInterpolate(yp2[xs0], yp2[xs1],
306 float p3 = cubicInterpolate(yp3[xs0], yp3[xs1],
309 float p = cubicInterpolate(p0, p1, p2, p3, yf);