Lines Matching refs:FPBits

70 template <class T> inline void set_implicit_bit(fputil::FPBits<T> &result) {  in set_implicit_bit()
76 inline void set_implicit_bit<long double>(fputil::FPBits<long double> &result) {
91 eisel_lemire(typename fputil::FPBits<T>::UIntType mantissa, int32_t exp10, in eisel_lemire()
92 typename fputil::FPBits<T>::UIntType *outputMantissa, in eisel_lemire()
95 using BitsType = typename fputil::FPBits<T>::UIntType; in eisel_lemire()
188 typename fputil::FPBits<long double>::UIntType mantissa, int32_t exp10,
189 typename fputil::FPBits<long double>::UIntType *outputMantissa,
191 using BitsType = typename fputil::FPBits<long double>::UIntType;
309 typename fputil::FPBits<T>::UIntType *outputMantissa, in simple_decimal_conversion()
327 *outputExp2 = fputil::FPBits<T>::MAX_EXPONENT; in simple_decimal_conversion()
378 if (exp2 >= fputil::FPBits<T>::MAX_EXPONENT) { in simple_decimal_conversion()
380 *outputExp2 = fputil::FPBits<T>::MAX_EXPONENT; in simple_decimal_conversion()
387 typename fputil::FPBits<T>::UIntType final_mantissa = in simple_decimal_conversion()
388 hpd.round_to_integer_type<typename fputil::FPBits<T>::UIntType>(); in simple_decimal_conversion()
401 hpd.round_to_integer_type<typename fputil::FPBits<T>::UIntType>(); in simple_decimal_conversion()
410 if (final_mantissa == typename fputil::FPBits<T>::UIntType(2) in simple_decimal_conversion()
418 if (exp2 >= fputil::FPBits<T>::MAX_EXPONENT) { in simple_decimal_conversion()
506 clinger_fast_path(typename fputil::FPBits<T>::UIntType mantissa, int32_t exp10, in clinger_fast_path()
507 typename fputil::FPBits<T>::UIntType *outputMantissa, in clinger_fast_path()
513 fputil::FPBits<T> result; in clinger_fast_path()
517 result = fputil::FPBits<T>(float_mantissa); in clinger_fast_path()
533 result = fputil::FPBits<T>(float_mantissa * in clinger_fast_path()
539 result = fputil::FPBits<T>(float_mantissa / in clinger_fast_path()
554 decimal_exp_to_float(typename fputil::FPBits<T>::UIntType mantissa, in decimal_exp_to_float()
557 typename fputil::FPBits<T>::UIntType *outputMantissa, in decimal_exp_to_float()
565 *outputExp2 = fputil::FPBits<T>::MAX_EXPONENT; in decimal_exp_to_float()
595 typename fputil::FPBits<T>::UIntType first_mantissa = *outputMantissa; in decimal_exp_to_float()
615 binary_exp_to_float(typename fputil::FPBits<T>::UIntType mantissa, int32_t exp2, in binary_exp_to_float()
617 typename fputil::FPBits<T>::UIntType *outputMantissa, in binary_exp_to_float()
619 using BitsType = typename fputil::FPBits<T>::UIntType; in binary_exp_to_float()
636 exp2 + NUMBITS + fputil::FPBits<T>::EXPONENT_BIAS - 1; in binary_exp_to_float()
723 typename fputil::FPBits<T>::UIntType *outputMantissa, in decimal_string_to_float()
725 using BitsType = typename fputil::FPBits<T>::UIntType; in decimal_string_to_float()
814 typename fputil::FPBits<T>::UIntType *outputMantissa, in hexadecimal_string_to_float()
816 using BitsType = typename fputil::FPBits<T>::UIntType; in hexadecimal_string_to_float()
901 using BitsType = typename fputil::FPBits<T>::UIntType; in strtofloatingpoint()
902 fputil::FPBits<T> result = fputil::FPBits<T>(); in strtofloatingpoint()
976 result = fputil::FPBits<T>(result.build_nan(nan_mantissa)); in strtofloatingpoint()
980 result = fputil::FPBits<T>(result.build_nan(nan_mantissa)); in strtofloatingpoint()