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

/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A Dresize.rs38 static float4 cubicInterpolate (float4 p0,float4 p1,float4 p2,float4 p3 , float x) {
68 float4 p0 = cubicInterpolate(p00, p01, p02, p03, xf);
74 float4 p1 = cubicInterpolate(p10, p11, p12, p13, xf);
80 float4 p2 = cubicInterpolate(p20, p21, p22, p23, xf);
86 float4 p3 = cubicInterpolate(p30, p31, p32, p33, xf);
88 float4 p = cubicInterpolate(p0, p1, p2, p3, yf);
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
H A Dresize.rs38 static float4 cubicInterpolate (float4 p0,float4 p1,float4 p2,float4 p3 , float x) {
68 float4 p0 = cubicInterpolate(p00, p01, p02, p03, xf);
74 float4 p1 = cubicInterpolate(p10, p11, p12, p13, xf);
80 float4 p2 = cubicInterpolate(p20, p21, p22, p23, xf);
86 float4 p3 = cubicInterpolate(p30, p31, p32, p33, xf);
88 float4 p = cubicInterpolate(p0, p1, p2, p3, yf);
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
H A Dresize.rs38 static float4 cubicInterpolate (float4 p0,float4 p1,float4 p2,float4 p3 , float x) {
68 float4 p0 = cubicInterpolate(p00, p01, p02, p03, xf);
74 float4 p1 = cubicInterpolate(p10, p11, p12, p13, xf);
80 float4 p2 = cubicInterpolate(p20, p21, p22, p23, xf);
86 float4 p3 = cubicInterpolate(p30, p31, p32, p33, xf);
88 float4 p = cubicInterpolate(p0, p1, p2, p3, yf);
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicResize.cpp78 static float4 cubicInterpolate(float4 p0,float4 p1,float4 p2,float4 p3, float x) { function
83 static float2 cubicInterpolate(float2 p0,float2 p1,float2 p2,float2 p3, float x) { function
88 static float cubicInterpolate(float p0,float p1,float p2,float p3 , float x) { function
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_float
[all...]

Completed in 135 milliseconds