Searched defs:cubicInterpolate (Results 1 - 1 of 1) sorted by relevance

/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicResize.cpp69 static float4 cubicInterpolate(float4 p0,float4 p1,float4 p2,float4 p3, float x) { function
74 static float2 cubicInterpolate(float2 p0,float2 p1,float2 p2,float2 p3, float x) { function
79 static float cubicInterpolate(float p0,float p1,float p2,float p3 , float x) { function
94 float4 p0 = cubicInterpolate(convert_float4(yp0[xs0]),
99 float4 p1 = cubicInterpolate(convert_float4(yp1[xs0]),
104 float4 p2 = cubicInterpolate(convert_float4(yp2[xs0]),
109 float4 p3 = cubicInterpolate(convert_float4(yp3[xs0]),
114 float4 p = cubicInterpolate(p0, p1, p2, p3, yf);
129 float2 p0 = cubicInterpolate(convert_float2(yp0[xs0]),
134 float2 p1 = cubicInterpolate(convert_float
[all...]

Completed in 716 milliseconds