Searched refs:ilogb (Results 1 - 20 of 20) sorted by relevance

/external/v8/third_party/llvm-build/Release+Asserts/lib/clang/3.9.0/include/
H A D__clang_cuda_math_forward_declares.h99 __DEVICE__ int ilogb(double);
100 __DEVICE__ int ilogb(float);
215 using ::ilogb;
H A Dtgmath.h843 // 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/bison/darwin-lib/
H A Dmath.h502 /* 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 */
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 macro
[all...]
/external/bison/lib/
H A Dmath.in.h190 /* 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 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); variable
1133 # undef ilogb macro
[all...]
/external/bison/linux-lib/
H A Dmath.h502 /* 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 */
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 macro
[all...]
/external/clang/test/CodeGen/
H A Dlibcall-declarations.c103 int ilogb(double);
282 F(hypot), F(hypotf), F(hypotl), F(ilogb), F(ilogbf),
402 // CHECK-NOERRNO: declare i32 @ilogb(double) [[NUW]]
/external/libcxx/test/std/numerics/c.math/
H A Dcmath.pass.cpp82 Ambiguous ilogb(Ambiguous){ return Ambiguous(); } function
1017 static_assert((std::is_same<decltype(std::ilogb((float)0)), int>::value), "");
1018 static_assert((std::is_same<decltype(std::ilogb((bool)0)), int>::value), "");
1019 static_assert((std::is_same<decltype(std::ilogb((unsigned short)0)), int>::value), "");
1020 static_assert((std::is_same<decltype(std::ilogb((int)0)), int>::value), "");
1021 static_assert((std::is_same<decltype(std::ilogb((unsigned int)0)), int>::value), "");
1022 static_assert((std::is_same<decltype(std::ilogb((long)0)), int>::value), "");
1023 static_assert((std::is_same<decltype(std::ilogb((unsigned long)0)), int>::value), "");
1024 static_assert((std::is_same<decltype(std::ilogb((long long)0)), int>::value), "");
1025 static_assert((std::is_same<decltype(std::ilogb((unsigne
[all...]
/external/llvm/unittests/ADT/
H A DAPFloatTest.cpp2823 TEST(APFloatTest, ilogb) {
2824 EXPECT_EQ(0, ilogb(APFloat(APFloat::IEEEsingle, "0x1p+0")));
2825 EXPECT_EQ(0, ilogb(APFloat(APFloat::IEEEsingle, "-0x1p+0")));
2826 EXPECT_EQ(42, ilogb(APFloat(APFloat::IEEEsingle, "0x1p+42")));
2827 EXPECT_EQ(-42, ilogb(APFloat(APFloat::IEEEsingle, "0x1p-42")));
2830 ilogb(APFloat::getInf(APFloat::IEEEsingle, false)));
2832 ilogb(APFloat::getInf(APFloat::IEEEsingle, true)));
2834 ilogb(APFloat::getZero(APFloat::IEEEsingle, false)));
2836 ilogb(APFloat::getZero(APFloat::IEEEsingle, true)));
2838 ilogb(APFloa
[all...]
/external/llvm/include/llvm/ADT/
H A DAPFloat.h498 /// \brief Enumeration of \c ilogb error results.
514 friend int ilogb(const APFloat &Arg) { function in class:llvm::APFloat
/external/clang/lib/Headers/
H A Dtgmath.h843 // 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/std/depr/depr.c.headers/
H A Dmath_h.pass.cpp445 static_assert((std::is_same<decltype(ilogb((double)0)), int>::value), "");
448 assert(ilogb(1) == 0);
/external/ltrace/etc/
H A Dlibm.so.conf188 int ilogb(double);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp3888 int Exp = ilogb(RHS);
3890 int MaxExponent = ilogb(APFloat::getLargest(RHS.getSemantics()));
/external/compiler-rt/test/builtins/Unit/ppc/
H A Dqdiv_test.c754 int exponent = ilogb(r.hi);
H A Dqmul_test.c752 int exponent = ilogb(r.hi);
H A Dqadd_test.c1831 int exponent = ilogb(r.hi);
H A Dqsub_test.c1833 int exponent = ilogb(r.hi);
/external/clang/lib/AST/
H A DExprConstant.cpp8510 DenomLogB = ilogb(MaxCD);
/external/bison/
H A Dconfigure24887 for gl_func in acosf acosl asinf asinl atanf atanl cbrt cbrtf cbrtl ceilf ceill copysign copysignf copysignl cosf cosl coshf expf expl exp2 exp2f exp2l expm1 expm1f expm1l fabsf fabsl floorf floorl fma fmaf fmal fmod fmodf fmodl frexpf frexpl hypotf hypotl ilogb ilogbf ilogbl ldexpf ldexpl log logf logl log10 log10f log10l log1p log1pf log1pl log2 log2f log2l logb logbf logbl modf modff modfl powf remainder remainderf remainderl rint rintf rintl round roundf roundl sinf sinl sinhf sqrtf sqrtl tanf tanl tanhf trunc truncf truncl; do
/external/libgdx/backends/gdx-backend-moe/libs/
H A Dintel-moe-ios.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE com/ com/intel/ com/intel/moe/ com/intel/moe/ ...

Completed in 375 milliseconds