Lines Matching refs:testall_tol

107 #define	testall_tol(func, x, result, tol)	       		   do { \
112 testall_tol(func, x, result, tol); \
113 testall_tol(func, -(x), -result, tol); \
116 testall_tol(func, x, result, tol); \
117 testall_tol(func, -(x), result, tol); \
131 testall_tol(cacosh, zero, CMPLXL(0.0, pi / 2), 1);
132 testall_tol(cacosh, -zero, CMPLXL(0.0, -pi / 2), 1);
133 testall_tol(cacos, zero, CMPLXL(pi / 2, -0.0), 1);
134 testall_tol(cacos, -zero, CMPLXL(pi / 2, 0.0), 1);
194 testall_tol(catanh, z, CMPLXL(0.0, pi / 2), 1);
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);
251 testall_tol(cacosh, -z, CMPLXL(INFINITY, -pi), 1);
253 testall_tol(cacos, -z, CMPLXL(pi, INFINITY), 1);
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);
285 testall_tol(cacosh, z, CMPLXL(0.0, acos(nums[i])), 1);
286 testall_tol(cacos, z, CMPLXL(acosl(nums[i]), -0.0), 1);
287 testall_tol(casin, z, CMPLXL(asinl(nums[i]), 0.0), 1);
288 testall_tol(catanh, z, CMPLXL(atanh(nums[i]), 0.0), 1);
290 testall_tol(cacosh, z,
293 testall_tol(cacos, z,
296 testall_tol(casin, z,
299 testall_tol(catanh, z,
302 testall_tol(casinh, z, CMPLXL(asinh(nums[i]), 0.0), 1);
303 testall_tol(catan, z, CMPLXL(atan(nums[i]), 0), 1);
329 testall_tol(cacos, z, acos_z, 2);