Searched refs:frexp (Results 1 – 12 of 12) sorted by relevance
/ndk/sources/android/support/src/musl-math/ |
D | frexp.c | 4 double frexp(double x, int *e) in frexp() function 11 x = frexp(x*0x1p64, e); in frexp()
|
D | frexpl.c | 6 return frexp(x, e); in frexpl()
|
/ndk/tests/device/test-stlport/unit/ |
D | cmath_test.cpp | 98 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/ |
D | cmath_test.cpp | 98 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.h | 372 _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/ |
D | cmath | 58 using ::frexp;
|
/ndk/sources/cxx-stl/system/include/ |
D | cmath | 58 using ::frexp;
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/tools/ |
D | config.hpp | 225 using std::frexp;\
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/ |
D | cmath.pass.cpp | 241 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/ |
D | Android.mk | 97 src/musl-math/frexp.c \
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | cmath | 94 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/ |
D | math_h.pass.cpp | 109 static_assert((std::is_same<decltype(frexp((double)0, &ip)), double>::value), ""); in test_frexp() 112 assert(frexp(0, &ip) == 0); in test_frexp()
|