Lines Matching refs:CMPLXL
108 testall(CMPLXL(0.0, -0.0), CMPLXL(1.0, -0.0), ALL_STD_EXCEPT, 0, 1); in ATF_TC_BODY()
109 testall(CMPLXL(-0.0, -0.0), CMPLXL(1.0, -0.0), ALL_STD_EXCEPT, 0, 1); in ATF_TC_BODY()
124 testall(CMPLXL(finites[i], NAN), CMPLXL(NAN, NAN), in ATF_TC_BODY()
129 testall(CMPLXL(NAN, finites[i]), CMPLXL(NAN, NAN), in ATF_TC_BODY()
134 testall(CMPLXL(NAN, 0.0), CMPLXL(NAN, 0.0), ALL_STD_EXCEPT, 0, 1); in ATF_TC_BODY()
135 testall(CMPLXL(NAN, -0.0), CMPLXL(NAN, -0.0), ALL_STD_EXCEPT, 0, 1); in ATF_TC_BODY()
138 testall(CMPLXL(INFINITY, NAN), CMPLXL(INFINITY, NAN), in ATF_TC_BODY()
141 testall(CMPLXL(-INFINITY, NAN), CMPLXL(0.0, 0.0), in ATF_TC_BODY()
144 testall(CMPLXL(NAN, NAN), CMPLXL(NAN, NAN), in ATF_TC_BODY()
155 testall(CMPLXL(finites[i], INFINITY), CMPLXL(NAN, NAN), in ATF_TC_BODY()
160 testall(CMPLXL(-INFINITY, M_PI_4), CMPLXL(0.0, 0.0), in ATF_TC_BODY()
162 testall(CMPLXL(-INFINITY, 3 * M_PI_4), CMPLXL(-0.0, 0.0), in ATF_TC_BODY()
164 testall(CMPLXL(-INFINITY, 5 * M_PI_4), CMPLXL(-0.0, -0.0), in ATF_TC_BODY()
166 testall(CMPLXL(-INFINITY, 7 * M_PI_4), CMPLXL(0.0, -0.0), in ATF_TC_BODY()
168 testall(CMPLXL(-INFINITY, 0.0), CMPLXL(0.0, 0.0), in ATF_TC_BODY()
170 testall(CMPLXL(-INFINITY, -0.0), CMPLXL(0.0, -0.0), in ATF_TC_BODY()
174 testall(CMPLXL(INFINITY, M_PI_4), CMPLXL(INFINITY, INFINITY), in ATF_TC_BODY()
176 testall(CMPLXL(INFINITY, 3 * M_PI_4), CMPLXL(-INFINITY, INFINITY), in ATF_TC_BODY()
178 testall(CMPLXL(INFINITY, 5 * M_PI_4), CMPLXL(-INFINITY, -INFINITY), in ATF_TC_BODY()
180 testall(CMPLXL(INFINITY, 7 * M_PI_4), CMPLXL(INFINITY, -INFINITY), in ATF_TC_BODY()
183 testall(CMPLXL(INFINITY, 0.0), CMPLXL(INFINITY, 0.0), in ATF_TC_BODY()
185 testall(CMPLXL(INFINITY, -0.0), CMPLXL(INFINITY, -0.0), in ATF_TC_BODY()
196 test(cexp, CMPLXL(finites[i], 0.0), in ATF_TC_BODY()
197 CMPLXL(exp(finites[i]), 0.0), in ATF_TC_BODY()
199 test(cexp, CMPLXL(finites[i], -0.0), in ATF_TC_BODY()
200 CMPLXL(exp(finites[i]), -0.0), in ATF_TC_BODY()
202 test_f(cexpf, CMPLXL(finites[i], 0.0), in ATF_TC_BODY()
203 CMPLXL(expf(finites[i]), 0.0), in ATF_TC_BODY()
205 test_f(cexpf, CMPLXL(finites[i], -0.0), in ATF_TC_BODY()
206 CMPLXL(expf(finites[i]), -0.0), in ATF_TC_BODY()
217 test(cexp, CMPLXL(0.0, finites[i]), in ATF_TC_BODY()
218 CMPLXL(cos(finites[i]), sin(finites[i])), in ATF_TC_BODY()
220 test(cexp, CMPLXL(-0.0, finites[i]), in ATF_TC_BODY()
221 CMPLXL(cos(finites[i]), sin(finites[i])), in ATF_TC_BODY()
223 test_f(cexpf, CMPLXL(0.0, finites[i]), in ATF_TC_BODY()
224 CMPLXL(cosf(finites[i]), sinf(finites[i])), in ATF_TC_BODY()
226 test_f(cexpf, CMPLXL(-0.0, finites[i]), in ATF_TC_BODY()
227 CMPLXL(cosf(finites[i]), sinf(finites[i])), in ATF_TC_BODY()
252 test_tol(cexp, CMPLXL(a, b), CMPLXL(x, y), 3 * DBL_ULP()); in ATF_TC_BODY()
257 test_tol(cexpf, CMPLXL(a, b), CMPLXL(x, y), 1 * FLT_ULP()); in ATF_TC_BODY()
266 test_tol(cexp, CMPLXL(709.79, 0x1p-1074), in ATF_TC_BODY()
267 CMPLXL(INFINITY, 8.94674309915433533273e-16), DBL_ULP()); in ATF_TC_BODY()
268 test_tol(cexp, CMPLXL(1000, 0x1p-1074), in ATF_TC_BODY()
269 CMPLXL(INFINITY, 9.73344457300016401328e+110), DBL_ULP()); in ATF_TC_BODY()
270 test_tol(cexp, CMPLXL(1400, 0x1p-1074), in ATF_TC_BODY()
271 CMPLXL(INFINITY, 5.08228858149196559681e+284), DBL_ULP()); in ATF_TC_BODY()
272 test_tol(cexp, CMPLXL(900, 0x1.23456789abcdep-1020), in ATF_TC_BODY()
273 CMPLXL(INFINITY, 7.42156649354218408074e+83), DBL_ULP()); in ATF_TC_BODY()
274 test_tol(cexp, CMPLXL(1300, 0x1.23456789abcdep-1020), in ATF_TC_BODY()
275 CMPLXL(INFINITY, 3.87514844965996756704e+257), DBL_ULP()); in ATF_TC_BODY()
277 test_tol(cexpf, CMPLXL(88.73, 0x1p-149), in ATF_TC_BODY()
278 CMPLXL(INFINITY, 4.80265603e-07), 2 * FLT_ULP()); in ATF_TC_BODY()
279 test_tol(cexpf, CMPLXL(90, 0x1p-149), in ATF_TC_BODY()
280 CMPLXL(INFINITY, 1.7101492622e-06f), 2 * FLT_ULP()); in ATF_TC_BODY()
281 test_tol(cexpf, CMPLXL(192, 0x1p-149), in ATF_TC_BODY()
282 CMPLXL(INFINITY, 3.396809344e+38f), 2 * FLT_ULP()); in ATF_TC_BODY()
283 test_tol(cexpf, CMPLXL(120, 0x1.234568p-120), in ATF_TC_BODY()
284 CMPLXL(INFINITY, 1.1163382522e+16f), 2 * FLT_ULP()); in ATF_TC_BODY()
285 test_tol(cexpf, CMPLXL(170, 0x1.234568p-120), in ATF_TC_BODY()
286 CMPLXL(INFINITY, 5.7878851079e+37f), 2 * FLT_ULP()); in ATF_TC_BODY()