HomeSort by relevance Sort by last modified time
    Searched defs:rounded (Results 1 - 22 of 22) 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/geometry/
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);
  /external/deqp/framework/common/
tcuBilinearImageCompare.cpp 80 const deUint32 rounded = (sum + half) >> (NUM_SUBPIXEL_BITS*2); local
82 DE_ASSERT(de::inRange<deUint32>(rounded, 0, 0xff));
83 return (deUint8)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/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/jarjar/src/main/com/tonicsystems/jarjar/util/
ClassHeaderReader.java 145 int rounded = (int)(CHUNK * Math.ceil((float)amount / CHUNK)); local
146 bsize += read(in, b, bsize, rounded - bsize);
  /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/chromium_org/third_party/WebKit/Source/wtf/
MathExtras.h 188 double rounded = round(flt); local
189 intgr = static_cast<int64_t>(rounded);
191 // the rounded result is even. If it is not we need to add 1 to
  /external/chromium_org/third_party/icu/source/i18n/
compactdecimalformat.cpp 247 DigitList orig, rounded; local
251 _round(orig, rounded, isNegative, status);
255 double roundedDouble = rounded.getDouble();
  /external/deqp/modules/gles3/functional/
es3fShaderCommonFunctionTests.cpp 600 const int rounded = (q > 0.5f) ? (truncated + 1) : // Rounded up local
602 truncated; // Rounded down
604 return float(rounded);
684 const deUint32 maxUlpDiff = getMaxUlpDiffFromBits(mantissaBits); // ULP diff for rounded integer value.
    [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderCommonFunctionTests.cpp 631 const int rounded = (q > 0.5f) ? (truncated + 1) : // Rounded up local
633 truncated; // Rounded down
635 return float(rounded);
715 const deUint32 maxUlpDiff = getMaxUlpDiffFromBits(mantissaBits); // ULP diff for rounded integer value.
    [all...]
  /external/icu/icu4c/source/i18n/
compactdecimalformat.cpp 247 DigitList orig, rounded; local
251 _round(orig, rounded, isNegative, status);
255 double roundedDouble = rounded.getDouble();
  /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 2279 double rounded = std::floor(fs + 0.5); local
2294 double rounded = trunc(fs); local
2304 double rounded = std::floor(fs); local
2314 double rounded = std::ceil(fs); local
2326 double rounded = trunc(fs); local
2337 double rounded = trunc(fs); local
2348 double rounded = local
    [all...]
  /external/chromium_org/v8/src/mips64/
simulator-mips64.cc 2418 double rounded = std::floor(fs + 0.5); local
2433 double rounded = trunc(fs); local
2443 double rounded = std::floor(fs); local
2453 double rounded = std::ceil(fs); local
2471 double rounded = fs > 0 ? floor(fs + 0.5) : ceil(fs - 0.5); local
2480 double rounded = trunc(fs); local
2489 double rounded = floor(fs); local
2498 double rounded = ceil(fs); local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NotificationPanelView.java 822 float rounded = amount >= 1f ? amount : 0f; local
    [all...]
  /external/dexmaker/lib/
jarjar.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
commons-lang-2.6.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
commons-lang-2.6.jar 
  /prebuilts/tools/common/m2/repository/commons-lang/commons-lang/2.4/
commons-lang-2.4.jar 
  /prebuilts/tools/common/m2/repository/commons-lang/commons-lang/2.6/
commons-lang-2.6.jar 

Completed in 906 milliseconds