HomeSort by relevance Sort by last modified time
    Searched defs:round (Results 51 - 75 of 203) sorted by null

1 23 4 5 6 7 8 9

  /external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/armv7/
omxSP_FFTInv_CCSToR_F32_Sfs_s.S 72 #define round r3 define
198 mov round, #1
199 vmov.f32 fone, round
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/neon/
armSP_FFTInv_CCSToR_F32_preTwiddleRadix2_unsafe_s.S 75 #define round r3 define
armSP_FFTInv_CCSToR_S32_preTwiddleRadix2_unsafe_s.S 82 #define round r3 define
omxSP_FFTFwd_CToC_SC16_Sfs_s.S 97 #define round r3 define
omxSP_FFTFwd_CToC_SC32_Sfs_s.S 95 #define round r3 define
omxSP_FFTInv_CToC_SC16_Sfs_s.S 97 #define round r3 define
armSP_FFTInv_CCSToR_S16_preTwiddleRadix2_unsafe_s.S 60 #define round r3 define
omxSP_FFTInv_CCSToR_F32_Sfs_s.S 84 #define round r3 define
omxSP_FFTInv_CCSToR_S16_Sfs_s.S 75 #define round r3 define
omxSP_FFTInv_CCSToR_S32_Sfs_s.S 101 #define round r3 define
  /external/iproute2/ip/
ipneigh.c 387 int round = 0; local
395 while (round < MAX_ROUNDS) {
407 if (round == 0)
410 printf("*** Flush is complete after %d round%s ***\n", round, round>1?"s":"");
415 round++;
419 printf("\n*** Round %d, deleting %d entries ***\n", round, filter.flushed);
  /external/qemu/ui/
d3des.c 325 register int round; local
347 for( round = 0; round < 8; round++ ) {
  /frameworks/base/core/tests/coretests/src/android/text/
StaticLayoutDirectionsTest.java 129 b.setWidth(Math.round(width));
  /libcore/luni/src/main/java/java/lang/
Math.java 349 * 754 rules. The result is {@code x-round(x/p)*p} where {@code round(x/p)}
660 * <li>{@code round(+0.0) = +0.0}</li>
661 * <li>{@code round(-0.0) = +0.0}</li>
662 * <li>{@code round((anything > Long.MAX_VALUE) = Long.MAX_VALUE}</li>
663 * <li>{@code round((anything < Long.MIN_VALUE) = Long.MIN_VALUE}</li>
664 * <li>{@code round(+infinity) = Long.MAX_VALUE}</li>
665 * <li>{@code round(-infinity) = Long.MIN_VALUE}</li>
666 * <li>{@code round(NaN) = +0.0}</li>
673 public static long round(double d) method in class:Math
700 public static int round(float f) { method in class:Math
    [all...]
StrictMath.java 347 * 754 rules. The result is {@code x-round(x/p)*p} where {@code round(x/p)}
650 * <li>{@code round(+0.0) = +0.0}</li>
651 * <li>{@code round(-0.0) = +0.0}</li>
652 * <li>{@code round((anything > Long.MAX_VALUE) = Long.MAX_VALUE}</li>
653 * <li>{@code round((anything < Long.MIN_VALUE) = Long.MIN_VALUE}</li>
654 * <li>{@code round(+infinity) = Long.MAX_VALUE}</li>
655 * <li>{@code round(-infinity) = Long.MIN_VALUE}</li>
656 * <li>{@code round(NaN) = +0.0}</li>
663 public static long round(double d) method in class:StrictMath
686 public static int round(float f) { method in class:StrictMath
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
CaptureLayoutHelper.java 358 // Round the rect first to avoid rounding errors later on.
359 round(config.mBottomBarRect);
360 round(config.mPreviewRect);
366 * Round the float coordinates in the given rect, and store the rounded value
369 public static void round(RectF rect) { method in class:CaptureLayoutHelper
373 float left = Math.round(rect.left);
374 float top = Math.round(rect.top);
375 float right = Math.round(rect.right);
376 float bottom = Math.round(rect.bottom);
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
FaceView.java 138 mFaceIndicator.setBounds(Math.round(mRect.left), Math.round(mRect.top),
139 Math.round(mRect.right), Math.round(mRect.bottom));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureFloatingTextDrawingPreview.java 140 final float round = mParams.mGesturePreviewRoundRadius; local
142 mGesturePreviewRectangle, round, round, mParams.getBackgroundPaint());
  /system/core/include/private/pixelflinger/
ggl_fixed.h 468 GGLfixed round; local
470 asm("mov %x[round], #1 \n"
471 "lsl %x[round], %x[round], %x[shift] \n"
472 "lsr %x[round], %x[round], #1 \n"
473 "smaddl %x[result], %w[x], %w[y],%x[round] \n"
475 : [round]"=&r"(round), [result]"=&r"(result) \
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathFunctions.cpp 229 static double round(double);
518 long pos = static_cast<long>(FunRound::round(doublePos));
525 len = static_cast<long>(FunRound::round(doubleLen));
670 double FunRound::round(double val) function in class:WebCore::XPath::FunRound
683 return round(arg(0)->evaluate().toNumber());
711 { "round", { &createFunRound, 1 } },
  /external/chromium_org/third_party/WebKit/Source/platform/
LayoutUnit.h 147 ALWAYS_INLINE int round() const function in class:WebCore::LayoutUnit
765 return (fraction + size).round() - fraction.round();
770 return value.round();
  /external/chromium_org/third_party/WebKit/Source/wtf/
MathExtras.h 82 static double round(double num) function
96 inline long long llround(double num) { return static_cast<long long>(round(num)); }
98 inline long lround(double num) { return static_cast<long>(round(num)); }
188 double rounded = round(flt);
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
dct16x16_test.cc 34 static int round(double x) { function in namespace:__anon16627
320 << "Error: 16x16 FHT/IHT has an individual round trip error > 1";
323 << "Error: 16x16 FHT/IHT has average round trip error > 1 per block";
401 coeff[j] = round(out_r[j]);
  /external/libvpx/libvpx/test/
dct16x16_test.cc 34 static int round(double x) { function in namespace:__anon28580
320 << "Error: 16x16 FHT/IHT has an individual round trip error > 1";
323 << "Error: 16x16 FHT/IHT has average round trip error > 1 per block";
401 coeff[j] = round(out_r[j]);
  /frameworks/base/core/java/android/widget/
RatingBar.java 115 // than 1 so boundaries round up).
198 setProgress(Math.round(rating * getProgressPerStar()));

Completed in 617 milliseconds

1 23 4 5 6 7 8 9