Searched defs:fp_traits_non_native (Results 1 – 1 of 1) sorted by relevance
139 template<class T, class U> struct fp_traits_non_native struct142 typedef generic_tag<std::numeric_limits<T>::is_specialized> method;177 template<> struct fp_traits_non_native<float, single_precision> struct179 typedef ieee_copy_all_bits_tag method;186 typedef uint32_t bits;187 static void get_bits(float x, uint32_t& a) { std::memcpy(&a, &x, 4); } in get_bits()188 static void set_bits(float& x, uint32_t a) { std::memcpy(&x, &a, 4); } in set_bits()196 template<> struct fp_traits_non_native<double, double_precision> struct198 typedef ieee_copy_leading_bits_tag method;205 typedef uint32_t bits;[all …]