Searched refs:ldexp (Results 1 – 4 of 4) sorted by relevance
/external/stlport/stlport/stl/ |
D | _cmath.h | 373 _STLP_MATH_INLINE2X(double, int, ldexp, ldexp) in _STLP_DMATH_INLINE() 410 # if defined (ldexp) 411 inline double __stlp_ldexp(double __x, int __y) { return ldexp(__x, __y); } in __stlp_ldexp() 412 # undef ldexp 413 inline double ldexp(double __x, int __y) { return __stlp_ldexp(__x, __y); } in ldexp() function 444 _STLP_DEF_MATH_INLINE2I(ldexp, ldexp) 581 using ::ldexp;
|
/external/stlport/test/unit/ |
D | cmath_test.cpp | 100 CPPUNIT_CHECK( are_equals(std::ldexp(1.0, 2), 4.0) ); in import_checks() 125 CPPUNIT_CHECK( are_equals(std::ldexp(1.0f, 2), 4.0f) ); in import_checks() 151 CPPUNIT_CHECK( are_equals(std::ldexp(1.0l, 2), 4.0l) ); in import_checks()
|
/external/chromium/base/ |
D | rand_util.cc | 35 double result = ldexp(static_cast<double>(random_bits), -1 * kBits); in RandDouble()
|
/external/libvpx/vp8/common/x86/ |
D | boolcoder.cxx | 141 uint m = (uint) ldexp( frexp( p, &e), mbits + 2); in operator ()() 185 return ldexp( (double)mantissa( i), - (int) exponent( i)); in operator ()()
|