Lines Matching refs:p0
100 static float4 cubicInterpolate(float4 p0, float4 p1, float4 p2, float4 p3, float x) { in cubicInterpolate() argument
101 return p1 + 0.5f * x * (p2 - p0 + x * (2.f * p0 - 5.f * p1 + 4.f * p2 - p3 in cubicInterpolate()
102 + x * (3.f * (p1 - p2) + p3 - p0))); in cubicInterpolate()
105 static float2 cubicInterpolate(float2 p0,float2 p1,float2 p2,float2 p3, float x) { in cubicInterpolate() argument
106 return p1 + 0.5f * x * (p2 - p0 + x * (2.f * p0 - 5.f * p1 + 4.f * p2 - p3 in cubicInterpolate()
107 + x * (3.f * (p1 - p2) + p3 - p0))); in cubicInterpolate()
112 static float cubicInterpolate(float p0,float p1,float p2,float p3 , float x) { in cubicInterpolate() argument
113 return p1 + 0.5f * x * (p2 - p0 + x * (2.f * p0 - 5.f * p1 + in cubicInterpolate()
116 _mm_set1_ps(p3 - p0)))))); in cubicInterpolate()
120 static float cubicInterpolate(float p0,float p1,float p2,float p3 , float x) { in cubicInterpolate() argument
122 return p1 + 0.5f * x * (p2 - p0 + x * (2.f * p0 - 5.f * p1 + 4.f * p2 - p3 in cubicInterpolate()
123 + x * (3.f * (p1 - p2) + p3 - p0))); in cubicInterpolate()
137 float4 p0 = cubicInterpolate(convert<float4>(yp0[xs0]), in OneBiCubic() local
157 float4 p = cubicInterpolate(p0, p1, p2, p3, yf); in OneBiCubic()
172 float2 p0 = cubicInterpolate(convert<float2>(yp0[xs0]), in OneBiCubic() local
192 float2 p = cubicInterpolate(p0, p1, p2, p3, yf); in OneBiCubic()
207 float p0 = cubicInterpolate((float)yp0[xs0], (float)yp0[xs1], in OneBiCubic() local
216 float p = cubicInterpolate(p0, p1, p2, p3, yf); in OneBiCubic()
290 float4 p0 = cubicInterpolate(yp0[xs0], yp0[xs1], in OneBiCubic() local
299 float4 p = cubicInterpolate(p0, p1, p2, p3, yf); in OneBiCubic()
313 float2 p0 = cubicInterpolate(yp0[xs0], yp0[xs1], in OneBiCubic() local
322 float2 p = cubicInterpolate(p0, p1, p2, p3, yf); in OneBiCubic()
336 float p0 = cubicInterpolate(yp0[xs0], yp0[xs1], in OneBiCubic() local
345 float p = cubicInterpolate(p0, p1, p2, p3, yf); in OneBiCubic()