OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cubicInterpolate
(Results
1 - 4
of
4
) sorted by null
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
resize.rs
38
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/tests/java_api/ImageProcessing2/src/com/android/rs/image/
resize.rs
38
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/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
resize.rs
38
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/
rsCpuIntrinsicResize.cpp
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])
[
all
...]
Completed in 104 milliseconds