HomeSort by relevance Sort by last modified time
    Searched refs:ilogb (Results 1 - 25 of 26) sorted by null

1 2

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestIlogb.rs 24 return ilogb(in);
28 return ilogb(in);
32 return ilogb(in);
36 return ilogb(in);
CoreMathVerifier.java 77 static native int ilogb(float x); method in class:CoreMathVerifier
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_significand.c 18 * scalb(x, (double) -ilogb(x)),
28 return __ieee754_scalb(x,(double) -ilogb(x));
s_ilogb.c 16 /* ilogb(double x)
18 * ilogb(0) = FP_ILOGB0
19 * ilogb(NaN) = FP_ILOGBNAN (no signal is raised)
20 * ilogb(inf) = INT_MAX (no signal is raised)
28 int ilogb(double x) function
s_fma.c 280 if (spread + ilogb(r.hi) > -1023)
  /bionic/libm/
fake_long_double.c 32 int ilogbl(long double a1) { return ilogb(a1); }
  /external/bison/darwin-lib/
math.h 502 /* NetBSD, IRIX 6.5: match what ilogb() does */
506 /* AIX 5.1: match what ilogb() does in AIX >= 5.2 */
510 /* Solaris 9: match what ilogb() does */
1445 # undef ilogb macro
    [all...]
  /external/bison/lib/
math.in.h 190 /* NetBSD, IRIX 6.5: match what ilogb() does */
194 /* AIX 5.1: match what ilogb() does in AIX >= 5.2 */
198 /* Solaris 9: match what ilogb() does */
1120 # undef ilogb macro
1121 # define ilogb macro
1131 _GL_CXXALIASWARN (ilogb); variable
1133 # undef ilogb macro
    [all...]
  /external/bison/linux-lib/
math.h 502 /* NetBSD, IRIX 6.5: match what ilogb() does */
506 /* AIX 5.1: match what ilogb() does in AIX >= 5.2 */
510 /* Solaris 9: match what ilogb() does */
1445 # undef ilogb macro
    [all...]
  /bionic/tests/
math_test.cpp 867 TEST(math, ilogb) {
868 ASSERT_EQ(FP_ILOGB0, ilogb(0.0));
869 ASSERT_EQ(FP_ILOGBNAN, ilogb(nan("")));
870 ASSERT_EQ(INT_MAX, ilogb(HUGE_VAL));
871 ASSERT_EQ(0, ilogb(1.0));
872 ASSERT_EQ(3, ilogb(10.0));
    [all...]
  /external/clang/test/CodeGen/
libcall-declarations.c 103 int ilogb(double);
282 F(hypot), F(hypotf), F(hypotl), F(ilogb), F(ilogbf),
402 // CHECK-NOERRNO: declare i32 @ilogb(double) [[NUW]]
  /bionic/libm/include/
math.h 233 int ilogb(double) __pure2;
  /external/libcxx/test/numerics/c.math/
cmath.disabled.cpp     [all...]
  /external/clang/lib/Headers/
tgmath.h 843 // ilogb
851 __tg_ilogb(double __x) {return ilogb(__x);}
857 #undef ilogb macro
858 #define ilogb(__x) __tg_ilogb(__tg_promote1((__x))(__x)) macro
  /external/libcxx/test/depr/depr.c.headers/
math_h.disabled.cpp 443 static_assert((std::is_same<decltype(ilogb((double)0)), int>::value), "");
446 assert(ilogb(1) == 0);
  /external/ltrace/etc/
libm.so.conf 188 int ilogb(double);
  /development/ndk/platforms/android-13/include/
math.h 244 int ilogb(double) __NDK_FPABI_MATH__ __pure2;
  /development/ndk/platforms/android-18/include/
math.h 244 int ilogb(double) __NDK_FPABI_MATH__ __pure2;
  /development/ndk/platforms/android-3/include/
math.h 244 int ilogb(double) __NDK_FPABI_MATH__ __pure2;
  /development/ndk/platforms/android-9/include/
math.h 244 int ilogb(double) __NDK_FPABI_MATH__ __pure2;
  /development/ndk/platforms/android-L/include/
math.h 233 int ilogb(double) __NDK_FPABI_MATH__ __pure2;
  /external/compiler-rt/test/builtins/Unit/ppc/
qdiv_test.c     [all...]
qmul_test.c     [all...]
qadd_test.c     [all...]
qsub_test.c     [all...]

Completed in 685 milliseconds

1 2