HomeSort by relevance Sort by last modified time
    Searched refs:round (Results 76 - 100 of 808) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/compiler-rt/lib/
divdf3.c 168 // code to round them correctly.
173 const bool round = (residual << 1) > bSignificand; local
178 // Round
179 absResult += round;
divsf3.c 153 // code to round them correctly.
158 const bool round = (residual << 1) > bSignificand; local
163 // Round
164 absResult += round;
  /external/valgrind/main/none/tests/ppc32/
test_isa_2_06_part2.stdout.exp     [all...]
  /external/valgrind/main/none/tests/ppc64/
test_isa_2_06_part2.stdout.exp     [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/detail/
round_fwd.hpp 41 T round(const T& v, const Policy& pol);
43 T round(const T& v);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/widget/
ProportionalLayout.java 105 width = Math.round(childHeight * mRatio);
109 height = Math.round(childWidth * mRatio);
  /packages/apps/UnifiedEmail/src/com/android/mail/photomanager/
BitmapUtil.java 152 srcCroppedW = Math.round(w / scale);
153 srcCroppedH = Math.round(h / scale);
  /frameworks/base/core/java/android/widget/
StackView.java 244 int duration = Math.round(mStackSlider.getDurationForNeutralPosition(mYVelocity));
264 int duration = Math.round(mStackSlider.getDurationForOffscreenPosition(mYVelocity));
562 final int newSlideAmount = Math.round(SLIDE_UP_RATIO * getMeasuredHeight());
565 mSwipeThreshold = Math.round(SWIPE_THRESHOLD_RATIO * newSlideAmount);
781 if (mTouchRect.contains(Math.round(x), Math.round(y))) {
852 duration = Math.round(mStackSlider.getDurationForNeutralPosition());
854 duration = Math.round(mStackSlider.getDurationForOffscreenPosition());
    [all...]
  /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 83 int fesetround(int round);
  /development/ndk/platforms/android-9/arch-x86/include/
fenv.h 83 int fesetround(int round);
  /external/chromium_org/build/android/pylib/
surface_stats_collector.py 99 jankiness = [max(0, round(change)) for change in normalized_changes]
106 int(round(frame_count / seconds)), 'fps'),
111 round(max(normalized_frame_lengths)),
135 'avg_surface_fps', int(round(frame_count / seconds)), 'fps'))
  /external/chromium_org/chrome/common/extensions/docs/examples/api/messaging/timer/
popup.js 28 var usec = Math.round(timer.microseconds() / response.counter);
50 var usec = Math.round(timer.microseconds() / response.counter);
  /external/chromium_org/chrome/test/functional/
chromeos_basic.py 44 self.assertEqual(volume_setting, round(self.GetVolumeInfo()['volume']))
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
LayoutPoint.h 158 return IntPoint(point.x().round(), point.y().round());
163 return IntPoint(size.width().round(), size.height().round());
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
webtreemap.js 209 width = Math.round(width);
210 height = Math.round(height);
223 x1 += Math.round((rsum / space) / pixels_to_units);
225 y1 += Math.round((rsum / space) / pixels_to_units);
  /external/chromium_org/third_party/skia/src/images/
SkPageFlipper.cpp 63 rect.round(&r);
  /external/chromium_org/tools/perf/measurements/
loading_measurement_analyzer.py 106 print >> stdout, 'Total page load time: %ds' % int(round(
108 print >> stdout, 'Average page load time: %dms' % int(round(
111 print >> stdout, 'Total CPU time: %ds' % int(round(total_cpu_time / 1000))
112 print >> stdout, 'Average CPU time: %dms' % int(round(
  /external/chromium_org/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/chromium_org/v8/test/mjsunit/
constant-folding-2.js 198 assertEquals(2, Math.round(1.5));
199 assertEquals(-1, Math.round(-1.5));
200 assertEquals("Infinity", String(Math.round(Infinity)));
201 assertEquals("-Infinity", String(Math.round(-Infinity)));
202 assertEquals("Infinity", String(1 / Math.round(0.0)));
203 assertEquals("-Infinity", String(1 / Math.round(-0.0)));
204 assertEquals("NaN", String(Math.round(NaN)));
205 assertEquals(Math.pow(2, 52) + 1, Math.round(Math.pow(2, 52) + 1));
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
RenderFontJme.java 116 return Math.round(font.getCharacterAdvance(currentCharacter, nextCharacter, size));
  /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;
  /frameworks/av/media/libeffects/loudness/common/core/
math.h 77 // Round to the nearest integer: We need this implementation
78 // since std::round is missing on android.
81 inline T round(const T &x) { function in namespace:std
  /frameworks/base/packages/WallpaperCropper/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());

Completed in 5660 milliseconds

1 2 34 5 6 7 8 91011>>