Lines Matching refs:INFINITY

188 	z = CMPLXL(NAN, INFINITY);
189 testall(cacosh, z, CMPLXL(INFINITY, NAN), ALL_STD_EXCEPT, 0, CS_REAL);
190 testall(cacosh, -z, CMPLXL(INFINITY, NAN), ALL_STD_EXCEPT, 0, CS_REAL);
191 testall(cacos, z, CMPLXL(NAN, -INFINITY), ALL_STD_EXCEPT, 0, CS_IMAG);
192 testall(casinh, z, CMPLXL(INFINITY, NAN), ALL_STD_EXCEPT, 0, 0);
193 testall(casin, z, CMPLXL(NAN, INFINITY), ALL_STD_EXCEPT, 0, CS_IMAG);
197 z = CMPLXL(INFINITY, NAN);
198 testall_even(cacosh, z, CMPLXL(INFINITY, NAN), ALL_STD_EXCEPT, 0,
200 testall_even(cacos, z, CMPLXL(NAN, INFINITY), ALL_STD_EXCEPT, 0, 0);
201 testall_odd(casinh, z, CMPLXL(INFINITY, NAN), ALL_STD_EXCEPT, 0,
203 testall_odd(casin, z, CMPLXL(NAN, INFINITY), ALL_STD_EXCEPT, 0, 0);
238 z = CMPLXL(INFINITY, INFINITY);
239 testall_tol(cacosh, z, CMPLXL(INFINITY, pi / 4), 1);
240 testall_tol(cacosh, -z, CMPLXL(INFINITY, -c3pi / 4), 1);
241 testall_tol(cacos, z, CMPLXL(pi / 4, -INFINITY), 1);
242 testall_tol(cacos, -z, CMPLXL(c3pi / 4, INFINITY), 1);
243 testall_odd_tol(casinh, z, CMPLXL(INFINITY, pi / 4), 1);
244 testall_odd_tol(casin, z, CMPLXL(pi / 4, INFINITY), 1);
248 z = CMPLXL(INFINITY, 0.5);
250 testall(cacosh, z, CMPLXL(INFINITY, 0), OPT_INEXACT, 0, CS_BOTH);
251 testall_tol(cacosh, -z, CMPLXL(INFINITY, -pi), 1);
252 testall(cacos, z, CMPLXL(0, -INFINITY), OPT_INEXACT, 0, CS_BOTH);
253 testall_tol(cacos, -z, CMPLXL(pi, INFINITY), 1);
254 testall_odd(casinh, z, CMPLXL(INFINITY, 0), OPT_INEXACT, 0, CS_BOTH);
255 testall_odd_tol(casin, z, CMPLXL(pi / 2, INFINITY), 1);
259 z = CMPLXL(0.5, INFINITY);
260 testall_tol(cacosh, z, CMPLXL(INFINITY, pi / 2), 1);
261 testall_tol(cacosh, -z, CMPLXL(INFINITY, -pi / 2), 1);
262 testall_tol(cacos, z, CMPLXL(pi / 2, -INFINITY), 1);
263 testall_tol(cacos, -z, CMPLXL(pi / 2, INFINITY), 1);
264 testall_odd_tol(casinh, z, CMPLXL(INFINITY, pi / 2), 1);
266 testall_odd(casin, z, CMPLXL(0.0, INFINITY), OPT_INEXACT, 0, CS_BOTH);