Home
last modified time | relevance | path

Searched refs:frexp (Results 1 – 12 of 12) sorted by relevance

/ndk/sources/android/support/src/musl-math/
Dfrexp.c4 double frexp(double x, int *e) in frexp() function
11 x = frexp(x*0x1p64, e); in frexp()
Dfrexpl.c6 return frexp(x, e); in frexpl()
/ndk/tests/device/test-stlport/unit/
Dcmath_test.cpp98 double_val = std::frexp(8.0, &int_val); in import_checks()
123 float_val = std::frexp(8.0f, &int_val); in import_checks()
149 long_double_val = std::frexp(8.0l, &int_val); in import_checks()
/ndk/tests/device/test-gnustl-full/unit/
Dcmath_test.cpp98 double_val = std::frexp(8.0, &int_val); in import_checks()
123 float_val = std::frexp(8.0f, &int_val); in import_checks()
149 long_double_val = std::frexp(8.0l, &int_val); in import_checks()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_cmath.h372 _STLP_MATH_INLINE2X(double, int*, frexp, frexp) in _STLP_DMATH_INLINE()
443 _STLP_DEF_MATH_INLINE2PI(frexp, frexp)
565 using ::frexp;
/ndk/sources/cxx-stl/gabi++/include/
Dcmath58 using ::frexp;
/ndk/sources/cxx-stl/system/include/
Dcmath58 using ::frexp;
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/tools/
Dconfig.hpp225 using std::frexp;\
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
Dcmath.pass.cpp241 static_assert((std::is_same<decltype(std::frexp((float)0, &ip)), float>::value), ""); in test_frexp()
242 static_assert((std::is_same<decltype(std::frexp((bool)0, &ip)), double>::value), ""); in test_frexp()
243 static_assert((std::is_same<decltype(std::frexp((unsigned short)0, &ip)), double>::value), ""); in test_frexp()
244 static_assert((std::is_same<decltype(std::frexp((int)0, &ip)), double>::value), ""); in test_frexp()
245 static_assert((std::is_same<decltype(std::frexp((unsigned int)0, &ip)), double>::value), ""); in test_frexp()
246 static_assert((std::is_same<decltype(std::frexp((long)0, &ip)), double>::value), ""); in test_frexp()
247 static_assert((std::is_same<decltype(std::frexp((unsigned long)0, &ip)), double>::value), ""); in test_frexp()
248 static_assert((std::is_same<decltype(std::frexp((long long)0, &ip)), double>::value), ""); in test_frexp()
249 …static_assert((std::is_same<decltype(std::frexp((unsigned long long)0, &ip)), double>::value), ""); in test_frexp()
250 static_assert((std::is_same<decltype(std::frexp((double)0, &ip)), double>::value), ""); in test_frexp()
[all …]
/ndk/sources/android/support/
DAndroid.mk97 src/musl-math/frexp.c \
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcmath94 floating_point frexp (arithmetic value, int* exp);
867 // frexp
869 using ::frexp;
873 inline _LIBCPP_INLINE_VISIBILITY float frexp(float __x, int* __e) _NOEXCEPT {return fre…
874 inline _LIBCPP_INLINE_VISIBILITY long double frexp(long double __x, int* __e) _NOEXCEPT {return fre…
880 frexp(_A1 __x, int* __e) _NOEXCEPT {return frexp((double)__x, __e);}
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dmath_h.pass.cpp109 static_assert((std::is_same<decltype(frexp((double)0, &ip)), double>::value), ""); in test_frexp()
112 assert(frexp(0, &ip) == 0); in test_frexp()