HomeSort by relevance Sort by last modified time
    Searched full:rint (Results 126 - 150 of 569) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/guava/guava/src/com/google/common/math/
DoubleMath.java 33 import static java.lang.Math.rint;
91 return rint(x);
94 double z = rint(x);
103 double z = rint(x);
276 * !Double.isNaN(x) && !Double.isInfinite(x) && x == Math.rint(x)}.
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
DfpMath.java 266 final Dfp inta = a.rint();
470 * <li> Set u = rint(y), v = y-u
472 * <li> Compute b = rint( a/ln(2) )
552 if (y.classify() == Dfp.FINITE && y.rint().equals(y) && !y.remainder(two).equals(zero)) {
601 if (y.classify() == Dfp.FINITE && y.rint().equals(y) && !y.remainder(two).equals(zero)) {
626 if (invert && !y.rint().equals(y)) {
635 final Dfp u = y.rint();
642 final Dfp b = a.divide(x.getField().getLn2()).rint();
658 if (y.rint().equals(y) && !y.remainder(two).equals(zero)) {
  /bionic/libm/
libm.map 222 rint;
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_rem_pio2f.c 58 /* Use a specialized rint() to get fn. Assume round-to-nearest. */
  /external/iproute2/tc/
tc_util.c 341 if (sz >= 1024*1024 && fabs(1024*1024*rint(tmp/(1024*1024)) - sz) < 1024)
342 snprintf(buf, len, "%gMb", rint(tmp/(1024*1024)));
343 else if (sz >= 1024 && fabs(1024*rint(tmp/1024) - sz) < 16)
344 snprintf(buf, len, "%gKb", rint(tmp/1024));
  /frameworks/rs/cpu_ref/
rsCpuRuntimeMathFuncs.cpp 79 IMPORT_F32_FN_F32(rint)
  /libcore/luni/src/test/java/libcore/java/math/
RunCSVTests.java 31 funcUlps.put("rint", 0.0);
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/lib/
libm.so 
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/libr2/
libm.so 
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/libr6/
libm.so 
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/lib/gcc/arm-eabi/4.8/include/
tgmath.h 156 #define rint(x) __TGMATH_REAL(x, rint) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/
tgmath.h 167 #define rint(x) __TGMATH_REAL(x, rint) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/
tgmath.h 167 #define rint(x) __TGMATH_REAL(x, rint) macro
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/lib/gcc/arm-eabi/4.8/include/
tgmath.h 156 #define rint(x) __TGMATH_REAL(x, rint) macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/
tgmath.h 156 #define rint(x) __TGMATH_REAL(x, rint) macro
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
cmath 119 #undef rint
267 using ::rint;
798 rint(float __x)
802 rint(long double __x)
807 rint(_Tp __x)
810 return rint(__type(__x));
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
cmath 119 #undef rint
267 using ::rint;
798 rint(float __x)
802 rint(long double __x)
807 rint(_Tp __x)
810 return rint(__type(__x));
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
cmath 119 #undef rint
267 using ::rint;
798 rint(float __x)
802 rint(long double __x)
807 rint(_Tp __x)
810 return rint(__type(__x));
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/tr1_impl/
cmath 119 #undef rint
267 using ::rint;
798 rint(float __x)
802 rint(long double __x)
807 rint(_Tp __x)
810 return rint(__type(__x));
  /bionic/tests/
math_test.cpp 780 TEST(math, rint) {
785 fesetround(FE_UPWARD); // rint/rintf/rintl obey the rounding mode.
786 feclearexcept(FE_ALL_EXCEPT); // rint/rintf/rintl do set the FE_INEXACT flag.
787 ASSERT_EQ(1234.0, rint(1234.0));
789 ASSERT_EQ(1235.0, rint(1234.01));
792 feclearexcept(FE_ALL_EXCEPT); // rint/rintf/rintl do set the FE_INEXACT flag.
798 feclearexcept(FE_ALL_EXCEPT); // rint/rintf/rintl do set the FE_INEXACT flag.
804 fesetround(FE_TOWARDZERO); // rint/rintf obey the rounding mode.
805 ASSERT_EQ(1234.0, rint(1234.01));
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidMathTest.java 419 // Test for method double java.lang.Math.rint(double)
421 3.0, Math.rint(2.9), 0D);
423 .rint(Double.NaN)));
425 2.0, Math.rint(2.1), 0D);
427 .rint(2.5) == 2.0);
OldAndroidStrictMathTest.java 434 // Test for method double java.lang.StrictMath.rint(double)
436 3.0, StrictMath.rint(2.9), 0D);
438 .rint(Double.NaN)));
440 .rint(2.1), 0D);
442 .rint(2.5) == 2.0);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
ComposableFunction.java 247 /** The {@code FastMath.rint} method wrapped as a {@link ComposableFunction}. */
248 public static final ComposableFunction RINT = new ComposableFunction() {
252 return FastMath.rint(d);
  /external/llvm/test/CodeGen/Mips/
fp16instrinsmc.ll 294 %call = call double @rint(double %0) #2
295 ;pic: lw ${{[0-9]+}}, %call16(rint)(${{[0-9]+}})
302 declare double @rint(double) #1
  /external/llvm/test/Transforms/InstCombine/
float-shrink-compare.ll 55 %2 = call double @rint(double %1) nounwind
140 %3 = call double @rint(double %2) nounwind
267 declare double @rint(double) nounwind readnone

Completed in 827 milliseconds

1 2 3 4 56 7 8 91011>>