Lines Matching refs:computed
613 check_float_internal (const char *test_name, FLOAT computed, FLOAT expected, in check_float_internal() argument
627 if (issignaling (computed) && issignaling (expected)) in check_float_internal()
630 && signbit (computed) != signbit (expected)) in check_float_internal()
636 && (FUNC (getpayload) (&computed) in check_float_internal()
645 else if (issignaling (computed) || issignaling (expected)) in check_float_internal()
647 else if (isnan (computed) && isnan (expected)) in check_float_internal()
650 && signbit (computed) != signbit (expected)) in check_float_internal()
656 && (FUNC (getpayload) (&computed) in check_float_internal()
665 else if (isinf (computed) && isinf (expected)) in check_float_internal()
669 && signbit (computed) != signbit (expected)) in check_float_internal()
678 else if (isinf (computed) || isnan (computed) in check_float_internal()
683 diff = FUNC(fabs) (computed - expected); in check_float_internal()
684 ulps = ULPDIFF (computed, expected); in check_float_internal()
688 && computed == 0.0 && expected == 0.0 in check_float_internal()
689 && signbit(computed) != signbit (expected)) in check_float_internal()
703 print_float (computed); in check_float_internal()
729 check_float (const char *test_name, FLOAT computed, FLOAT expected, in check_float() argument
732 check_float_internal (test_name, computed, expected, in check_float()
738 check_complex (const char *test_name, CFLOAT computed, in check_complex() argument
748 part_comp = __real__ computed; in check_complex()
758 part_comp = __imag__ computed; in check_complex()
774 check_int (const char *test_name, int computed, int expected, in check_int() argument
785 if (computed == expected) in check_int()
794 printf (" is: %d\n", computed); in check_int()
808 check_long (const char *test_name, long int computed, long int expected, in check_long() argument
819 if (computed == expected) in check_long()
828 printf (" is: %ld\n", computed); in check_long()
842 check_bool (const char *test_name, int computed, int expected, in check_bool() argument
853 if ((computed == 0) == (expected == 0)) in check_bool()
862 printf (" is: %d\n", computed); in check_bool()
876 check_longlong (const char *test_name, long long int computed, in check_longlong() argument
888 if (computed == expected) in check_longlong()
897 printf (" is: %lld\n", computed); in check_longlong()
911 check_intmax_t (const char *test_name, intmax_t computed, in check_intmax_t() argument
922 if (computed == expected) in check_intmax_t()
931 printf (" is: %jd\n", computed); in check_intmax_t()
945 check_uintmax_t (const char *test_name, uintmax_t computed, in check_uintmax_t() argument
956 if (computed == expected) in check_uintmax_t()
965 printf (" is: %ju\n", computed); in check_uintmax_t()