Home
last modified time | relevance | path

Searched refs:ilogb (Results 1 – 21 of 21) sorted by relevance

/external/bison/darwin-lib/
Dmath.h1432 # undef ilogb
1433 # define ilogb rpl_ilogb
1435 _GL_FUNCDECL_RPL (ilogb, int, (double x));
1436 _GL_CXXALIAS_RPL (ilogb, int, (double x));
1439 _GL_FUNCDECL_SYS (ilogb, int, (double x));
1441 _GL_CXXALIAS_SYS (ilogb, int, (double x));
1443 _GL_CXXALIASWARN (ilogb);
1445 # undef ilogb
1447 _GL_WARN_ON_USE (ilogb, "ilogb is unportable - "
/external/bison/lib/
Dmath.in.h1120 # undef ilogb
1121 # define ilogb rpl_ilogb macro
1123 _GL_FUNCDECL_RPL (ilogb, int, (double x));
1124 _GL_CXXALIAS_RPL (ilogb, int, (double x));
1127 _GL_FUNCDECL_SYS (ilogb, int, (double x));
1129 _GL_CXXALIAS_SYS (ilogb, int, (double x));
1131 _GL_CXXALIASWARN (ilogb);
1133 # undef ilogb
1135 _GL_WARN_ON_USE (ilogb, "ilogb is unportable - "
/external/bison/linux-lib/
Dmath.h1432 # undef ilogb
1433 # define ilogb rpl_ilogb
1435 _GL_FUNCDECL_RPL (ilogb, int, (double x));
1436 _GL_CXXALIAS_RPL (ilogb, int, (double x));
1439 _GL_FUNCDECL_SYS (ilogb, int, (double x));
1441 _GL_CXXALIAS_SYS (ilogb, int, (double x));
1443 _GL_CXXALIASWARN (ilogb);
1445 # undef ilogb
1447 _GL_WARN_ON_USE (ilogb, "ilogb is unportable - "
/external/clang/test/CodeGen/
Dlibcall-declarations.c103 int ilogb(double);
282 F(hypot), F(hypotf), F(hypotl), F(ilogb), F(ilogbf),
/external/libcxx/test/std/numerics/c.math/
Dcmath.pass.cpp82 Ambiguous ilogb(Ambiguous){ return Ambiguous(); } in ilogb() function
1017 static_assert((std::is_same<decltype(std::ilogb((float)0)), int>::value), ""); in test_ilogb()
1018 static_assert((std::is_same<decltype(std::ilogb((bool)0)), int>::value), ""); in test_ilogb()
1019 static_assert((std::is_same<decltype(std::ilogb((unsigned short)0)), int>::value), ""); in test_ilogb()
1020 static_assert((std::is_same<decltype(std::ilogb((int)0)), int>::value), ""); in test_ilogb()
1021 static_assert((std::is_same<decltype(std::ilogb((unsigned int)0)), int>::value), ""); in test_ilogb()
1022 static_assert((std::is_same<decltype(std::ilogb((long)0)), int>::value), ""); in test_ilogb()
1023 static_assert((std::is_same<decltype(std::ilogb((unsigned long)0)), int>::value), ""); in test_ilogb()
1024 static_assert((std::is_same<decltype(std::ilogb((long long)0)), int>::value), ""); in test_ilogb()
1025 static_assert((std::is_same<decltype(std::ilogb((unsigned long long)0)), int>::value), ""); in test_ilogb()
[all …]
/external/llvm/unittests/ADT/
DAPFloatTest.cpp2823 TEST(APFloatTest, ilogb) { in TEST() argument
2824 EXPECT_EQ(0, ilogb(APFloat(APFloat::IEEEsingle, "0x1p+0"))); in TEST()
2825 EXPECT_EQ(0, ilogb(APFloat(APFloat::IEEEsingle, "-0x1p+0"))); in TEST()
2826 EXPECT_EQ(42, ilogb(APFloat(APFloat::IEEEsingle, "0x1p+42"))); in TEST()
2827 EXPECT_EQ(-42, ilogb(APFloat(APFloat::IEEEsingle, "0x1p-42"))); in TEST()
2830 ilogb(APFloat::getInf(APFloat::IEEEsingle, false))); in TEST()
2832 ilogb(APFloat::getInf(APFloat::IEEEsingle, true))); in TEST()
2834 ilogb(APFloat::getZero(APFloat::IEEEsingle, false))); in TEST()
2836 ilogb(APFloat::getZero(APFloat::IEEEsingle, true))); in TEST()
2838 ilogb(APFloat::getNaN(APFloat::IEEEsingle, false))); in TEST()
[all …]
/external/compiler-rt/test/builtins/Unit/ppc/
Dqadd_test.c1831 int exponent = ilogb(r.hi); in testAccuracy()
Dqsub_test.c1833 int exponent = ilogb(r.hi); in testAccuracy()
Dqdiv_test.c754 int exponent = ilogb(r.hi); in testAccuracy()
Dqmul_test.c752 int exponent = ilogb(r.hi); in testAccuracy()
/external/clang/lib/Headers/
Dtgmath.h851 __tg_ilogb(double __x) {return ilogb(__x);} in __tg_ilogb()
857 #undef ilogb
858 #define ilogb(__x) __tg_ilogb(__tg_promote1((__x))(__x)) macro
/external/libcxx/include/
Dcmath212 int ilogb (arithmetic x);
1319 // ilogb
1321 using ::ilogb;
1324 inline _LIBCPP_INLINE_VISIBILITY int ilogb(float __lcpp_x) _NOEXCEPT {return ilogbf(__lcpp_x)…
1325 inline _LIBCPP_INLINE_VISIBILITY int ilogb(long double __lcpp_x) _NOEXCEPT {return ilogbl(__lcpp_x)…
1330 ilogb(_A1 __lcpp_x) _NOEXCEPT {return ilogb((double)__lcpp_x);}
/external/llvm/include/llvm/ADT/
DAPFloat.h514 friend int ilogb(const APFloat &Arg) { in ilogb() function
/external/libcxx/test/std/depr/depr.c.headers/
Dmath_h.pass.cpp445 static_assert((std::is_same<decltype(ilogb((double)0)), int>::value), ""); in test_ilogb()
448 assert(ilogb(1) == 0); in test_ilogb()
/external/ltrace/etc/
Dlibm.so.conf188 int ilogb(double);
/external/bison/m4/
Dmath_h.m446 ilogb ilogbf ilogbl
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCompares.cpp3888 int Exp = ilogb(RHS); in FoldFCmp_IntToFP_Cst()
3890 int MaxExponent = ilogb(APFloat::getLargest(RHS.getSemantics())); in FoldFCmp_IntToFP_Cst()
/external/clang/include/clang/Basic/
DBuiltins.def989 LIBBUILTIN(ilogb, "id", "fne", "math.h", ALL_LANGUAGES)
/external/compiler-rt/lib/dfsan/
Dlibc_ubuntu1404_abilist.txt2023 fun:ilogb=uninstrumented
/external/clang/lib/AST/
DExprConstant.cpp8510 DenomLogB = ilogb(MaxCD); in VisitBinaryOperator()
/external/bison/
Dconfigure24887 …oorl fma fmaf fmal fmod fmodf fmodl frexpf frexpl hypotf hypotl ilogb ilogbf ilogbl …