Home
last modified time | relevance | path

Searched refs:yf (Results 1 – 4 of 4) sorted by relevance

/frameworks/rs/cpu_ref/
DrsCpuIntrinsicResize.cpp85 float xf, float yf, int width) { in OneBiCubic() argument
114 float4 p = cubicInterpolate(p0, p1, p2, p3, yf); in OneBiCubic()
120 float xf, float yf, int width) { in OneBiCubic() argument
149 float2 p = cubicInterpolate(p0, p1, p2, p3, yf); in OneBiCubic()
155 float xf, float yf, int width) { in OneBiCubic() argument
173 float p = cubicInterpolate(p0, p1, p2, p3, yf); in OneBiCubic()
192 float yf = (p->y + 0.5f) * cp->scaleY - 0.5f; in kernelU4() local
193 int starty = (int) floor(yf - 1); in kernelU4()
194 yf = yf - floor(yf); in kernelU4()
212 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth); in kernelU4()
[all …]
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
Dresize.rs28 float yf = clamp(y * scale, 0.f, (float)gHeightIn - 1.f);
30 uint32_t iy = yf;
45 float yf = y * scale;
48 int starty = (int) floor(yf - 2);
50 yf = yf - floor(yf);
88 float4 p = cubicInterpolate(p0, p1, p2, p3, yf);
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Dresize.rs28 float yf = clamp(y * scale, 0.f, (float)gHeightIn - 1.f);
30 uint32_t iy = yf;
45 float yf = y * scale;
48 int starty = (int) floor(yf - 2);
50 yf = yf - floor(yf);
88 float4 p = cubicInterpolate(p0, p1, p2, p3, yf);
/frameworks/base/services/core/java/com/android/server/wm/
DDragState.java392 private WindowState getTouchedWinAtPointLw(float xf, float yf) { in getTouchedWinAtPointLw() argument
395 final int y = (int) yf; in getTouchedWinAtPointLw()