Lines Matching refs:outputExp2

93              uint32_t *outputExp2) {  in eisel_lemire()  argument
181 *outputExp2 = exp2; in eisel_lemire()
190 uint32_t *outputExp2) {
288 *outputExp2 = exp2;
310 uint32_t *outputExp2) { in simple_decimal_conversion() argument
317 *outputExp2 = 0; in simple_decimal_conversion()
327 *outputExp2 = fputil::FPBits<T>::MAX_EXPONENT; in simple_decimal_conversion()
337 *outputExp2 = 0; in simple_decimal_conversion()
380 *outputExp2 = fputil::FPBits<T>::MAX_EXPONENT; in simple_decimal_conversion()
428 *outputExp2 = exp2; in simple_decimal_conversion()
508 uint32_t *outputExp2) { in clinger_fast_path() argument
543 *outputExp2 = result.get_unbiased_exponent(); in clinger_fast_path()
558 uint32_t *outputExp2) { in decimal_exp_to_float() argument
565 *outputExp2 = fputil::FPBits<T>::MAX_EXPONENT; in decimal_exp_to_float()
576 *outputExp2 = 0; in decimal_exp_to_float()
582 if (clinger_fast_path<T>(mantissa, exp10, outputMantissa, outputExp2)) { in decimal_exp_to_float()
588 if (eisel_lemire<T>(mantissa, exp10, outputMantissa, outputExp2)) { in decimal_exp_to_float()
596 uint32_t first_exp2 = *outputExp2; in decimal_exp_to_float()
597 if (eisel_lemire<T>(mantissa + 1, exp10, outputMantissa, outputExp2)) { in decimal_exp_to_float()
598 if (*outputMantissa == first_mantissa && *outputExp2 == first_exp2) { in decimal_exp_to_float()
604 simple_decimal_conversion<T>(numStart, outputMantissa, outputExp2); in decimal_exp_to_float()
618 uint32_t *outputExp2) { in binary_exp_to_float() argument
641 *outputExp2 = (1 << fputil::FloatProperties<T>::EXPONENT_WIDTH) - 1; in binary_exp_to_float()
658 *outputExp2 = 0; in binary_exp_to_float()
696 *outputExp2 = biased_exponent; in binary_exp_to_float()