Home
last modified time | relevance | path

Searched refs:nearbyint (Results 1 – 7 of 7) sorted by relevance

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/
Dconverter_policies.hpp35 static source_type nearbyint ( argument_type s ) in nearbyint() function
57 static source_type nearbyint ( argument_type s ) in nearbyint() function
76 static source_type nearbyint ( argument_type s ) in nearbyint() function
95 static source_type nearbyint ( argument_type s ) in nearbyint() function
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/detail/
Dconverter.hpp465 static source_type nearbyint ( argument_type s ) { return s ; } in nearbyint() function
494 source_type s1 = Float2IntRounderBase::nearbyint(s); in convert()
519 static source_type nearbyint ( argument_type s ) { return s ; } in nearbyint() function
/ndk/sources/android/support/src/
Dmath_support.c84 __attribute__((weak)) long double nearbyintl(long double x) { return nearbyint((double)x); } in nearbyintl()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
Dcmath.pass.cpp1092 static_assert((std::is_same<decltype(std::nearbyint((float)0)), float>::value), ""); in test_nearbyint()
1093 static_assert((std::is_same<decltype(std::nearbyint((bool)0)), double>::value), ""); in test_nearbyint()
1094 static_assert((std::is_same<decltype(std::nearbyint((unsigned short)0)), double>::value), ""); in test_nearbyint()
1095 static_assert((std::is_same<decltype(std::nearbyint((int)0)), double>::value), ""); in test_nearbyint()
1096 static_assert((std::is_same<decltype(std::nearbyint((unsigned int)0)), double>::value), ""); in test_nearbyint()
1097 static_assert((std::is_same<decltype(std::nearbyint((long)0)), double>::value), ""); in test_nearbyint()
1098 static_assert((std::is_same<decltype(std::nearbyint((unsigned long)0)), double>::value), ""); in test_nearbyint()
1099 static_assert((std::is_same<decltype(std::nearbyint((long long)0)), double>::value), ""); in test_nearbyint()
1100 … static_assert((std::is_same<decltype(std::nearbyint((unsigned long long)0)), double>::value), ""); in test_nearbyint()
1101 static_assert((std::is_same<decltype(std::nearbyint((double)0)), double>::value), ""); in test_nearbyint()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcmath252 floating_point nearbyint (arithmetic x);
1439 // nearbyint
1441 using ::nearbyint;
1444 inline _LIBCPP_INLINE_VISIBILITY float nearbyint(float __x) _NOEXCEPT {return nearbyint…
1445 inline _LIBCPP_INLINE_VISIBILITY long double nearbyint(long double __x) _NOEXCEPT {return nearbyint…
1450 nearbyint(_A1 __x) _NOEXCEPT {return nearbyint((double)__x);}
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dmath_h.pass.cpp529 static_assert((std::is_same<decltype(nearbyint((double)0)), double>::value), ""); in test_nearbyint()
532 assert(nearbyint(1) == 1); in test_nearbyint()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
Dlexical_cast.hpp2169 static source_type nearbyint ( argument_type s ) in nearbyint() function
2171 const source_type orig_div_round = s / Rounder::nearbyint(s); in nearbyint()