/bionic/libm/i387/ |
fenv.c | 334 fesetround(int round) 339 if (round & ~_ROUND_MASK) { 344 control |= round; 349 mxcsr |= round << _SSE_ROUND_SHIFT;
|
/bionic/libm/include/i387/ |
fenv.h | 84 int fesetround(int round);
|
/development/ndk/platforms/android-9/arch-x86/include/ |
fenv.h | 84 int fesetround(int round);
|
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/ |
RenderFontJme.java | 116 return Math.round(font.getCharacterAdvance(currentCharacter, nextCharacter, size));
|
/external/libvpx/vp8/encoder/ |
block.h | 40 short *round; member in struct:__anon9764
|
/external/skia/src/images/ |
SkPageFlipper.cpp | 63 rect.round(&r);
|
/external/v8/test/mjsunit/compiler/ |
regress-106351.js | 30 // Test Math.round with the input reused in the same expression. 32 var v = Math.round(x) - x;
|
/external/webkit/Source/WebCore/html/ |
StepRange.cpp | 54 clampedValue = minimum + round((clampedValue - minimum) / step) * step;
|
BaseDateAndTimeInputType.cpp | 118 ASSERT(round(doubleValue) == doubleValue); 119 ASSERT(round(step) == step);
|
/libcore/luni/src/test/java/libcore/java/math/ |
BigDecimalTest.java | 64 BigDecimal rounded = bigDecimal.round(new MathContext(2, RoundingMode.FLOOR));
|
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/ |
BitmapUtils.java | 57 * request is 3. So we round up the sample size to avoid OOM. 118 int width = Math.round(bitmap.getWidth() * scale); 119 int height = Math.round(bitmap.getHeight() * scale); 159 int width = Math.round(scale * bitmap.getWidth()); 160 int height = Math.round(scale * bitmap.getHeight());
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
ScrollBarView.java | 83 mGripPosition = Math.round(r * mContentPosition);
|
/packages/wallpapers/Basic/src/com/android/wallpaper/grass/ |
SunCalculator.java | 83 int minute = (int) Math.round((time - hour) * 60); 92 int minute = (int) Math.round((time - hour) * 60); 101 int minute = (int) Math.round((time - hour) * 60); 112 int minute = (int) Math.round((time - hour) * 60);
|
/prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/ |
fenv.h | 84 int fesetround(int round);
|
/prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/ |
fenv.h | 84 int fesetround(int round);
|
/prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/ |
fenv.h | 84 int fesetround(int round);
|
/prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/ |
fenv.h | 84 int fesetround(int round);
|
/external/iproute2/ip/ |
ipneigh.c | 382 int round = 0; local 390 while (round < MAX_ROUNDS) { 402 if (round == 0) 405 printf("*** Flush is complete after %d round%s ***\n", round, round>1?"s":""); 410 round++; 414 printf("\n*** Round %d, deleting %d entries ***\n", round, filter.flushed);
|
/external/valgrind/unittest/ |
bigtest.cc | 224 inline double round(double lf) { function 278 params.NUM_CONTEXTS = round(params.num_contexts); 281 params.NUM_ITERATIONS = round(params.num_iterations_times_runcount / map_of_counts[101]); 513 params.DATA_SIZE = 1 + round(params.data_size_times_runcount / params.EstimateRuncount()); 517 params.NUM_CONTEXTS = round(params.num_contexts); 654 int count = round(it->second / nThreads); 692 nThreads = round(nThreads_double);
|
/frameworks/base/graphics/java/android/graphics/ |
RectF.java | 443 public void round(Rect dst) { method in class:RectF 444 dst.set(FastMath.round(left), FastMath.round(top), 445 FastMath.round(right), FastMath.round(bottom));
|
/external/dropbear/libtomcrypt/src/ciphers/safer/ |
safer.c | 258 unsigned int round; local 268 if (SAFER_MAX_NOF_ROUNDS < (round = *key)) round = SAFER_MAX_NOF_ROUNDS; 269 while(round-- > 0) 312 unsigned int round; local 322 if (SAFER_MAX_NOF_ROUNDS < (round = *key)) round = SAFER_MAX_NOF_ROUNDS; 323 key += SAFER_BLOCK_LEN * (1 + 2 * round); 326 while (round--)
|
/frameworks/base/core/java/android/widget/ |
Scroller.java | 295 mCurrX = mStartX + Math.round(x * mDeltaX); 296 mCurrY = mStartY + Math.round(x * mDeltaY); 314 mCurrX = mStartX + Math.round(distanceCoef * (mFinalX - mStartX)); 319 mCurrY = mStartY + Math.round(distanceCoef * (mFinalY - mStartY)); 447 mFinalX = startX + (int) Math.round(totalDistance * coeffX); 452 mFinalY = startY + (int) Math.round(totalDistance * coeffY);
|
/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/ |
TextReport.java | 77 + Math.round(apiPackage.getCoveragePercentage()) + "% (" 83 + Math.round(apiClass.getCoveragePercentage()) + "% ("
|
/external/regex-re2/util/ |
benchmark.cc | 83 static int round(int n) { function 113 n = round(n);
|
/external/v8/test/mjsunit/ |
math-round.js | 35 '"' + (test_id++) + '";return Math.round(input)'); 49 // Regression test for a bug where a negative zero coming from Math.round 52 var ret = Math.round(n); 54 ret += Math.round(n);
|