Home
last modified time | relevance | path

Searched defs:subranged_Float2Float (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/numeric/conversion/include/boost/numeric/conversion/detail/
Dis_subranged.hpp103 struct subranged_Float2Float struct
108 typedef mpl::int_< ::std::numeric_limits<S>::digits > S_mantisa ;
109 typedef mpl::int_< ::std::numeric_limits<T>::digits > T_mantisa ;
111 typedef mpl::int_< ::std::numeric_limits<S>::max_exponent > S_exponent ;
112 typedef mpl::int_< ::std::numeric_limits<T>::max_exponent > T_exponent ;
114 typedef typename mpl::less<T_exponent,S_exponent>::type T_smaller_exponent ;
116 typedef typename mpl::equal_to<T_exponent,S_exponent>::type equal_exponents ;
118 typedef mpl::less<T_mantisa,S_mantisa> T_smaller_mantisa ;
120 typedef mpl::eval_if<equal_exponents,T_smaller_mantisa,mpl::false_> not_bigger_exponent_case ;
124 type ;