Lines Matching full:infinity
157 INFINITY, in test_infinities()
158 -INFINITY, in test_infinities()
165 assert_equal(t_csqrt(CMPLXL(-INFINITY, vals[i])), in test_infinities()
166 CMPLXL(0.0, copysignl(INFINITY, vals[i]))); in test_infinities()
167 assert_equal(t_csqrt(CMPLXL(INFINITY, vals[i])), in test_infinities()
168 CMPLXL(INFINITY, copysignl(0.0, vals[i]))); in test_infinities()
170 assert_equal(t_csqrt(CMPLXL(vals[i], INFINITY)), in test_infinities()
171 CMPLXL(INFINITY, INFINITY)); in test_infinities()
172 assert_equal(t_csqrt(CMPLXL(vals[i], -INFINITY)), in test_infinities()
173 CMPLXL(INFINITY, -INFINITY)); in test_infinities()
184 ATF_CHECK(creall(t_csqrt(CMPLXL(INFINITY, NAN))) == INFINITY); in test_nans()
185 ATF_CHECK(isnan(cimagl(t_csqrt(CMPLXL(INFINITY, NAN))))); in test_nans()
187 ATF_CHECK(isnan(creall(t_csqrt(CMPLXL(-INFINITY, NAN))))); in test_nans()
188 ATF_CHECK(isinf(cimagl(t_csqrt(CMPLXL(-INFINITY, NAN))))); in test_nans()
190 assert_equal(t_csqrt(CMPLXL(NAN, INFINITY)), in test_nans()
191 CMPLXL(INFINITY, INFINITY)); in test_nans()
192 assert_equal(t_csqrt(CMPLXL(NAN, -INFINITY)), in test_nans()
193 CMPLXL(INFINITY, -INFINITY)); in test_nans()