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

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/detail/
H A Dfp_traits.hpp118 single precision (32 bits), double precision (64 bits)
119 and extended double precision (80 - 128 bits, depending on the processor)
122 both as double precision and extended double precision.
316 // Intel extended double precision format (80 bits)
351 // the Intel extended double precision format (80 bits) and
352 // the IEEE extended double precision format with 15 exponent bits (128 bits).
360 // PowerPC extended double precision format (128 bits)
401 // Motorola extended double precision forma
521 typedef BOOST_DEDUCED_TYPENAME size_to_precision<sizeof(T), ::boost::is_floating_point<T>::value>::type precision; typedef in struct:boost::math::detail::select_native
555 typedef BOOST_DEDUCED_TYPENAME size_to_precision<sizeof(T), ::boost::is_floating_point<T>::value>::type precision; typedef in struct:boost::math::detail::fp_traits
[all...]
/ndk/sources/cxx-stl/stlport/src/
H A Dnum_put_float.cpp403 // If long double value can be safely converted to double without losing precision
443 // If long double value can be safely converted to double without losing precision
481 // according to the specified precision and format flags. This is
490 int precision) {
506 if (precision != 0 || flags & ios_base::showpoint) {
511 while (*bp != 0 && precision--)
515 if (precision > 0)
516 buf.append(precision, '0');
553 int precision) {
554 if ( sign && (decpt > -precision)
487 __format_float_scientific( __iostring& buf, const char *bp, int decpt, int sign, bool is_zero, ios_base::fmtflags flags, int precision) argument
550 __format_float_fixed( __iostring &buf, const char *bp, int decpt, int sign, ios_base::fmtflags flags, int precision) argument
651 __format_float(__iostring &buf, const char * bp, int decpt, int sign, bool is_zero, ios_base::fmtflags flags, int precision) argument
749 __write_floatT(__iostring &buf, ios_base::fmtflags flags, int precision, _FloatT x , char modifier) argument
761 snprintf(_STLP_ARRAY_AND_SIZE(static_buf), fmtbuf, precision, x); local
823 __write_float(__iostring &buf, ios_base::fmtflags flags, int precision, double x) argument
834 __write_float(__iostring &buf, ios_base::fmtflags flags, int precision, long double x) argument
[all...]
/ndk/sources/cxx-stl/stlport/stlport/stl/
H A D_ios_base.h129 streamsize precision() const { return _M_precision; } function in class:ios_base
130 streamsize precision(streamsize __newprecision) { function in class:ios_base
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/policies/
H A Dpolicy.hpp234 // Trait to work out bits precision from digits10 and digits2:
237 struct precision struct in namespace:boost::math::policies::detail
240 // Now work out the precision:
250 (Digits2::value > ::boost::math::policies::detail::precision<Digits10,Digits2>::digits2_type::value),
416 // Now work out the precision:
421 typedef typename detail::precision<digits10_type, bits_precision_type>::type precision_type;
461 typedef detail::precision<digits10<>, digits2<> >::type precision_type;
486 typedef detail::precision<digits10<>, digits2<> >::type precision_type;
523 // Now work out the precision:
527 typedef typename detail::precision<digits10_typ
739 struct precision struct in namespace:boost::math::policies
759 struct precision<float, Policy> struct in namespace:boost::math::policies
764 struct precision<double, Policy> struct in namespace:boost::math::policies
769 struct precision<long double, Policy> struct in namespace:boost::math::policies
777 struct precision struct in namespace:boost::math::policies
[all...]

Completed in 129 milliseconds