Home
last modified time | relevance | path

Searched refs:low_level_convert (Results 1 – 9 of 9) sorted by relevance

/third_party/boost/libs/numeric/conversion/test/
Dudt_support_test.cpp80 static double low_level_convert ( MyUDT::MyFloat const& s ) in low_level_convert() function
87 static int low_level_convert ( MyUDT::MyFloat const& s ) in low_level_convert() function
94 static MyUDT::MyInt low_level_convert ( MyUDT::MyFloat const& s ) in low_level_convert() function
101 static int low_level_convert ( MyUDT::MyInt const& s ) { return s.to_builtin() ; } in low_level_convert() function
107 static MyUDT::MyFloat low_level_convert ( MyUDT::MyInt const& s ) in low_level_convert() function
116 static MyUDT::MyInt low_level_convert ( double s ) in low_level_convert() function
Dudt_example_0.cpp172 static result_type low_level_convert ( argument_type s ) { return Int((int)s.mV); } in low_level_convert() function
179 static result_type low_level_convert ( argument_type s ) { return Float(s.mV); } in low_level_convert() function
200 static Int low_level_convert ( Float const& s ) { return Int((int)s.mV); } in low_level_convert() function
204 static Float low_level_convert ( Int const& s ) { return Float(s.mV); } in low_level_convert() function
Dnumeric_cast_traits_test.cpp300 static T low_level_convert ( const Double& n ) in low_level_convert() function
309 static Double low_level_convert ( const S& n ) in low_level_convert() function
/third_party/boost/libs/numeric/conversion/doc/
Dconverter.qbk42 static result_type low_level_convert ( argument_type s ) ;
91 It supplies the `low_level_convert()` static member function exposed
129 return low_level_convert(s); // Externally supplied by the RawConverter policy.
182 [: `static result_type numeric_converter<>::low_level_convert ( argument_type s ) ;` ]
Dconverter_policies.qbk231 `low_level_convert()` static member function exposed by the
242 static result_type low_level_convert ( argument_type s ) { return <impl defined> ; }
258 static result_type low_level_convert ( argument_type s )
Drequirements.qbk429 static T low_level_convert ( const Double& n )
438 static Double low_level_convert ( const S& n )
/third_party/boost/boost/numeric/conversion/detail/
Dconverter.hpp461 static result_type low_level_convert ( argument_type s ) { return s ; } in low_level_convert() function
489 return RawConverterBase::low_level_convert(s1); in convert()
515 return RawConverterBase::low_level_convert(s); in convert()
/third_party/boost/boost/numeric/conversion/
Dconverter_policies.hpp188 static result_type low_level_convert ( argument_type s ) { return static_cast<result_type>(s) ; } in low_level_convert() function
/third_party/boost/boost/lexical_cast/detail/
Dconverter_numeric.hpp101 result = converter_t::low_level_convert(converter_t::nearbyint(arg, res)); in noexcept_numeric_convert()