/external/bison/darwin-lib/ |
D | math.h | 1432 # 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/ |
D | math.in.h | 1120 # 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/ |
D | math.h | 1432 # 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/ |
D | libcall-declarations.c | 103 int ilogb(double); 282 F(hypot), F(hypotf), F(hypotl), F(ilogb), F(ilogbf),
|
/external/libcxx/test/std/numerics/c.math/ |
D | cmath.pass.cpp | 82 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/ |
D | APFloatTest.cpp | 2823 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/ |
D | qadd_test.c | 1831 int exponent = ilogb(r.hi); in testAccuracy()
|
D | qsub_test.c | 1833 int exponent = ilogb(r.hi); in testAccuracy()
|
D | qdiv_test.c | 754 int exponent = ilogb(r.hi); in testAccuracy()
|
D | qmul_test.c | 752 int exponent = ilogb(r.hi); in testAccuracy()
|
/external/clang/lib/Headers/ |
D | tgmath.h | 851 __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/ |
D | cmath | 212 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/ |
D | APFloat.h | 514 friend int ilogb(const APFloat &Arg) { in ilogb() function
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | math_h.pass.cpp | 445 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/ |
D | libm.so.conf | 188 int ilogb(double);
|
/external/bison/m4/ |
D | math_h.m4 | 46 ilogb ilogbf ilogbl
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCompares.cpp | 3888 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/ |
D | Builtins.def | 989 LIBBUILTIN(ilogb, "id", "fne", "math.h", ALL_LANGUAGES)
|
/external/compiler-rt/lib/dfsan/ |
D | libc_ubuntu1404_abilist.txt | 2023 fun:ilogb=uninstrumented
|
/external/clang/lib/AST/ |
D | ExprConstant.cpp | 8510 DenomLogB = ilogb(MaxCD); in VisitBinaryOperator()
|
/external/bison/ |
D | configure | 24887 …oorl fma fmaf fmal fmod fmodf fmodl frexpf frexpl hypotf hypotl ilogb ilogbf ilogbl …
|