/frameworks/rs/cpu_ref/ |
D | rsCpuIntrinsicResize.cpp | 95 int startx = (int) floor(xf - 1); in OneBiCubic() 96 xf = xf - floor(xf); in OneBiCubic() 130 int startx = (int) floor(xf - 1); in OneBiCubic() 131 xf = xf - floor(xf); in OneBiCubic() 165 int startx = (int) floor(xf - 1); in OneBiCubic() 166 xf = xf - floor(xf); in OneBiCubic() 246 int startx = (int) floor(xf - 1); in OneBiCubic() 247 xf = xf - floor(xf); in OneBiCubic() 269 int startx = (int) floor(xf - 1); in OneBiCubic() 270 xf = xf - floor(xf); in OneBiCubic() [all …]
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
D | Gradient_Delegate.java | 137 pos = pos - (float)Math.floor(pos); in getGradientColor() 145 int intPart = (int)Math.floor(pos); in getGradientColor() 167 pos = pos - (float)Math.floor(pos); in getGradientColor() 171 int intPart = (int)Math.floor(pos); in getGradientColor()
|
/frameworks/base/core/java/android/util/ |
D | FloatMath.java | 46 public static float floor(float value) { in floor() method in FloatMath 47 return (float) Math.floor(value); in floor()
|
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/ |
D | resize.rs | 47 int startx = (int) floor(xf - 1); 48 int starty = (int) floor(yf - 1); 49 xf = xf - floor(xf); 50 yf = yf - floor(yf);
|
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
D | resize.rs | 47 int startx = (int) floor(xf - 1); 48 int starty = (int) floor(yf - 1); 49 xf = xf - floor(xf); 50 yf = yf - floor(yf);
|
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/ |
D | resize.rs | 47 int startx = (int) floor(xf - 1); 48 int starty = (int) floor(yf - 1); 49 xf = xf - floor(xf); 50 yf = yf - floor(yf);
|
/frameworks/base/graphics/java/android/graphics/drawable/shapes/ |
D | OvalShape.java | 43 (int) Math.floor(rect.right), (int) Math.floor(rect.bottom)); in getOutline()
|
D | RectShape.java | 44 (int) Math.floor(rect.right), (int) Math.floor(rect.bottom)); in getOutline()
|
D | RoundRectShape.java | 100 (int) Math.floor(rect.right), (int) Math.floor(rect.bottom), in getOutline()
|
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/ |
D | RadialPickerLayout.java | 401 int floor = (degrees / stepSize) * stepSize; in snapOnly30s() local 402 int ceiling = floor + stepSize; in snapOnly30s() 406 if (degrees == floor) { in snapOnly30s() 407 floor -= stepSize; in snapOnly30s() 409 degrees = floor; in snapOnly30s() 411 if ((degrees - floor) < (ceiling - degrees)) { in snapOnly30s() 412 degrees = floor; in snapOnly30s()
|
/frameworks/base/core/jni/android/graphics/ |
D | HarfBuzzNGFaceSkia.cpp | 168 int x_ppem = floor(sizeX + 0.5); in createFont() 169 int y_ppem = floor(sizeY + 0.5); in createFont()
|
/frameworks/base/libs/hwui/ |
D | GammaFontRenderer.cpp | 31 mGammaTable[i] = uint8_t((float)::floor(pow(i / 255.0f, gamma) * 255.0f + 0.5f)); in GammaFontRenderer()
|
D | PropertyValuesHolder.cpp | 61 int lowIndex = floor(fraction); in getValueFromData()
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/ |
D | omxVCM4P2_IDCT8x8blk.c | 92 pDst[(x * 8) + y] = (OMX_S16) floor(sum + 0.5); in omxVCM4P2_IDCT8x8blk()
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
D | RenderDrawable.java | 135 w = (int) Math.floor(scale * w); in renderImage() 136 h = (int) Math.floor(scale * h); in renderImage()
|
/frameworks/av/media/libeffects/loudness/common/core/ |
D | math.h | 82 return static_cast<T>(std::floor(static_cast<double>(x) + 0.5)); in round()
|
/frameworks/rs/driver/runtime/ |
D | rs_sample.c | 430 int32_t iPixel = floor(pixelUV); in sample_LOD_LinearPixel() 459 int32_t iPixel = floor(uv * (float)(sourceW)); in sample_LOD_NearestPixel() 479 int iPixelU = floor(pixelU); in sample_LOD_LinearPixel() 480 int iPixelV = floor(pixelV); in sample_LOD_LinearPixel() 525 int2 iPixel = convert_int2(floor(uv * dimF)); in sample_LOD_NearestPixel() 565 uint32_t lod0 = (uint32_t)floor(lod); in rsSample() 618 uint32_t lod0 = (uint32_t)floor(lod); in rsSample()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | SwipeHelper.java | 232 view.invalidate((int) Math.floor(childBounds.left), in invalidateGlobalRegion() 233 (int) Math.floor(childBounds.top), in invalidateGlobalRegion() 237 Log.v(TAG, "INVALIDATE(" + (int) Math.floor(childBounds.left) in invalidateGlobalRegion() 238 + "," + (int) Math.floor(childBounds.top) in invalidateGlobalRegion()
|
/frameworks/base/core/tests/benchmarks/src/android/util/ |
D | FloatMathBenchmark.java | 62 f += FloatMath.floor(100.123f); in timeFloatMathFloor()
|
/frameworks/av/services/audioflinger/tests/ |
D | test_utils.h | 42 return floor(val * 32767.0 + 0.5); 44 return floor(val * (1UL<<31) + 0.5);
|
/frameworks/base/core/java/android/widget/ |
D | RadialTimePickerView.java | 294 int floor = (degrees / stepSize) * stepSize; in snapOnly30s() local 295 final int ceiling = floor + stepSize; in snapOnly30s() 299 if (degrees == floor) { in snapOnly30s() 300 floor -= stepSize; in snapOnly30s() 302 degrees = floor; in snapOnly30s() 304 if ((degrees - floor) < (ceiling - degrees)) { in snapOnly30s() 305 degrees = floor; in snapOnly30s()
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/ |
D | lag_wind.tab | 20 | noise floor = 1.0001 = (0.9999 on r[1] ..r[16]) |
|
/frameworks/base/graphics/java/android/graphics/ |
D | RectF.java | 452 dst.set((int) Math.floor(left), (int) Math.floor(top), in roundOut()
|
/frameworks/support/compat/java/android/support/v4/util/ |
D | TimeUtils.java | 101 int seconds = (int) Math.floor(duration / 1000); in formatDurationLocked()
|
/frameworks/base/media/java/android/media/ |
D | ThumbnailUtils.java | 277 (int) Math.min(Math.floor(w / minSideLength), in computeInitialSampleSize() 278 Math.floor(h / minSideLength)); in computeInitialSampleSize()
|