Searched defs:ldexp (Results 1 - 4 of 4) sorted by relevance

/external/stlport/stlport/stl/
H A D_cmath.h373 _STLP_MATH_INLINE2X(double, int, ldexp, ldexp)
410 # if defined (ldexp)
411 inline double __stlp_ldexp(double __x, int __y) { return ldexp(__x, __y); }
412 # undef ldexp macro
413 inline double ldexp(double __x, int __y) { return __stlp_ldexp(__x, __y); } function
444 _STLP_DEF_MATH_INLINE2I(ldexp, ldexp)
581 using ::ldexp;
/external/clang/lib/Headers/
H A Dtgmath.h860 // ldexp
868 __tg_ldexp(double __x, int __y) {return ldexp(__x, __y);}
874 #undef ldexp macro
875 #define ldexp(__x, __y) __tg_ldexp(__tg_promote1((__x))(__x), __y) macro
/external/clang/lib/include/
H A Dtgmath.h860 // ldexp
868 __tg_ldexp(double __x, int __y) {return ldexp(__x, __y);}
874 #undef ldexp macro
875 #define ldexp(__x, __y) __tg_ldexp(__tg_promote1((__x))(__x), __y) macro
/external/eigen/unsupported/test/mpreal/
H A Dmpreal.h415 friend const mpreal ldexp(const mpreal& v, mp_exp_t exp);
1513 inline const mpreal ldexp(const mpreal& v, mp_exp_t exp) function in namespace:mpfr
2424 return IsInf(x) || (std::modf ( std::ldexp ( std::frexp ( x, &i ), n ), &t ) == 0.0);

Completed in 146 milliseconds