HomeSort by relevance Sort by last modified time
    Searched defs:rounded (Results 1 - 16 of 16) sorted by null

  /frameworks/av/media/libnbaio/
roundup.c 26 unsigned rounded = ((unsigned) 0x80000000) >> lz; local
27 // 0x800000001 and higher are actually rounded _down_ to prevent overflow
28 if (v > rounded && lz > 0) {
29 rounded <<= 1;
31 return rounded;
  /external/chromium_org/ui/gfx/
safe_integer_conversions.h 34 float rounded; local
36 rounded = std::floor(value + 0.5f);
38 rounded = std::ceil(value - 0.5f);
39 return ClampToInt(rounded);
  /libcore/luni/src/test/java/libcore/java/math/
BigDecimalTest.java 64 BigDecimal rounded = bigDecimal.round(new MathContext(2, RoundingMode.FLOOR)); local
65 assertEquals("0.99", rounded.toString());
  /external/chromium_org/v8/tools/
generate-ten-powers.scm 79 (define (rounded-/bx x y)
112 (v (rounded-/bx two^e ten^i))
  /external/v8/tools/
generate-ten-powers.scm 79 (define (rounded-/bx x y)
112 (v (rounded-/bx two^e ten^i))
  /external/chromium_org/third_party/WebKit/Source/wtf/
MathExtras.h 213 double rounded = round(flt); local
214 intgr = static_cast<int64_t>(rounded);
216 // the rounded result is even. If it is not we need to add 1 to
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_constant_expression.cpp 52 int rounded = IROUND(val); local
55 if (rounded % 2 != 0)
56 rounded += val > 0 ? -1 : 1;
59 return rounded;
    [all...]
  /external/mesa3d/src/glsl/
ir_constant_expression.cpp 52 int rounded = IROUND(val); local
55 if (rounded % 2 != 0)
56 rounded += val > 0 ? -1 : 1;
59 return rounded;
    [all...]
  /external/icu4c/i18n/
compactdecimalformat.cpp 247 DigitList orig, rounded; local
251 _round(orig, rounded, isNegative, status);
255 double roundedDouble = rounded.getDouble();
  /packages/apps/Camera2/src/com/android/camera/crop/
CropActivity.java 429 Rect rounded = new Rect(); local
430 trueCrop.roundOut(rounded);
431 mResultIntent.putExtra(CropExtras.KEY_CROPPED_RECT, rounded);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropActivity.java 432 Rect rounded = new Rect(); local
433 trueCrop.roundOut(rounded);
434 mResultIntent.putExtra(CropExtras.KEY_CROPPED_RECT, rounded);
  /external/chromium_org/v8/src/mips/
simulator-mips.cc 2190 double rounded = floor(fs + 0.5); local
2205 double rounded = trunc(fs); local
2215 double rounded = floor(fs); local
2225 double rounded = ceil(fs); local
2237 double rounded = trunc(fs); local
2244 double rounded = trunc(fs); local
2251 double rounded = fs > 0 ? floor(fs + 0.5) : ceil(fs - 0.5); local
    [all...]
  /external/v8/src/mips/
simulator-mips.cc 2068 double rounded = fs > 0 ? floor(fs + 0.5) : ceil(fs - 0.5); local
2078 double rounded = trunc(fs); local
2088 double rounded = floor(fs); local
2098 double rounded = ceil(fs); local
2110 double rounded = trunc(fs); local
2117 double rounded = trunc(fs); local
2124 double rounded = fs > 0 ? floor(fs + 0.5) : ceil(fs - 0.5); local
    [all...]
  /external/dexmaker/lib/
jarjar.jar 
  /prebuilts/misc/common/jarjar/
jarjar-1.4.jar 
  /prebuilts/tools/common/m2/internal/commons-lang/commons-lang/2.4/
commons-lang-2.4.jar 

Completed in 3543 milliseconds