Lines Matching refs:ef

534 	fp_exception_field_type	ef;  in single_to_decimal()  local
563 ef = 0; in single_to_decimal()
564 if (__fast_double_to_decimal(&x, pm, pd, &ef)) { in single_to_decimal()
566 __bigfloat_to_decimal(&bf, pm, pd, &ef); in single_to_decimal()
568 if (ef != 0) in single_to_decimal()
569 __base_conversion_set_exception(ef); in single_to_decimal()
570 *ps = ef; in single_to_decimal()
589 ef = 0; in single_to_decimal()
591 if (__fast_double_to_decimal(&x, pm, pd, &ef)) { in single_to_decimal()
593 __bigfloat_to_decimal(&bf, pm, pd, &ef); in single_to_decimal()
595 if (ef != 0) in single_to_decimal()
596 __base_conversion_set_exception(ef); in single_to_decimal()
597 *ps = ef; in single_to_decimal()
606 fp_exception_field_type ef; in double_to_decimal() local
635 ef = 0; in double_to_decimal()
636 if (__fast_double_to_decimal(px, pm, pd, &ef)) { in double_to_decimal()
638 __bigfloat_to_decimal(&bf, pm, pd, &ef); in double_to_decimal()
640 if (ef != 0) in double_to_decimal()
641 __base_conversion_set_exception(ef); in double_to_decimal()
642 *ps = ef; in double_to_decimal()
651 fp_exception_field_type ef; in extended_to_decimal() local
693 ef = 0; in extended_to_decimal()
695 __bigfloat_to_decimal(&bf, pm, pd, &ef); in extended_to_decimal()
696 if (ef != 0) in extended_to_decimal()
697 __base_conversion_set_exception(ef); in extended_to_decimal()
698 *ps = ef; in extended_to_decimal()
707 fp_exception_field_type ef; in quadruple_to_decimal() local
738 ef = 0; in quadruple_to_decimal()
740 __bigfloat_to_decimal(&bf, pm, pd, &ef); in quadruple_to_decimal()
741 if (ef != 0) in quadruple_to_decimal()
742 __base_conversion_set_exception(ef); in quadruple_to_decimal()
743 *ps = ef; in quadruple_to_decimal()