• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/lib/msun/tests/

Lines Matching refs:CMPLXL

112 	testall(CMPLXL(0.0, -0.0), CMPLXL(1.0, -0.0), ALL_STD_EXCEPT, 0, 1);
113 testall(CMPLXL(-0.0, -0.0), CMPLXL(1.0, -0.0), ALL_STD_EXCEPT, 0, 1);
129 testall(CMPLXL(finites[i], NAN), CMPLXL(NAN, NAN),
134 testall(CMPLXL(NAN, finites[i]), CMPLXL(NAN, NAN),
139 testall(CMPLXL(NAN, 0.0), CMPLXL(NAN, 0.0), ALL_STD_EXCEPT, 0, 1);
140 testall(CMPLXL(NAN, -0.0), CMPLXL(NAN, -0.0), ALL_STD_EXCEPT, 0, 1);
143 testall(CMPLXL(INFINITY, NAN), CMPLXL(INFINITY, NAN),
146 testall(CMPLXL(-INFINITY, NAN), CMPLXL(0.0, 0.0),
149 testall(CMPLXL(NAN, NAN), CMPLXL(NAN, NAN),
161 testall(CMPLXL(finites[i], INFINITY), CMPLXL(NAN, NAN),
166 testall(CMPLXL(-INFINITY, M_PI_4), CMPLXL(0.0, 0.0),
168 testall(CMPLXL(-INFINITY, 3 * M_PI_4), CMPLXL(-0.0, 0.0),
170 testall(CMPLXL(-INFINITY, 5 * M_PI_4), CMPLXL(-0.0, -0.0),
172 testall(CMPLXL(-INFINITY, 7 * M_PI_4), CMPLXL(0.0, -0.0),
174 testall(CMPLXL(-INFINITY, 0.0), CMPLXL(0.0, 0.0),
176 testall(CMPLXL(-INFINITY, -0.0), CMPLXL(0.0, -0.0),
180 testall(CMPLXL(INFINITY, M_PI_4), CMPLXL(INFINITY, INFINITY),
182 testall(CMPLXL(INFINITY, 3 * M_PI_4), CMPLXL(-INFINITY, INFINITY),
184 testall(CMPLXL(INFINITY, 5 * M_PI_4), CMPLXL(-INFINITY, -INFINITY),
186 testall(CMPLXL(INFINITY, 7 * M_PI_4), CMPLXL(INFINITY, -INFINITY),
189 testall(CMPLXL(INFINITY, 0.0), CMPLXL(INFINITY, 0.0),
191 testall(CMPLXL(INFINITY, -0.0), CMPLXL(INFINITY, -0.0),
203 test(cexp, CMPLXL(finites[i], 0.0),
204 CMPLXL(exp(finites[i]), 0.0),
206 test(cexp, CMPLXL(finites[i], -0.0),
207 CMPLXL(exp(finites[i]), -0.0),
209 test_f(cexpf, CMPLXL(finites[i], 0.0),
210 CMPLXL(expf(finites[i]), 0.0),
212 test_f(cexpf, CMPLXL(finites[i], -0.0),
213 CMPLXL(expf(finites[i]), -0.0),
225 test(cexp, CMPLXL(0.0, finites[i]),
226 CMPLXL(cos(finites[i]), sin(finites[i])),
228 test(cexp, CMPLXL(-0.0, finites[i]),
229 CMPLXL(cos(finites[i]), sin(finites[i])),
231 test_f(cexpf, CMPLXL(0.0, finites[i]),
232 CMPLXL(cosf(finites[i]), sinf(finites[i])),
234 test_f(cexpf, CMPLXL(-0.0, finites[i]),
235 CMPLXL(cosf(finites[i]), sinf(finites[i])),
261 test_tol(cexp, CMPLXL(a, b), CMPLXL(x, y), 3 * DBL_ULP());
266 test_tol(cexpf, CMPLXL(a, b), CMPLXL(x, y), 1 * FLT_ULP());
275 test_tol(cexp, CMPLXL(709.79, 0x1p-1074),
276 CMPLXL(INFINITY, 8.94674309915433533273e-16), DBL_ULP());
277 test_tol(cexp, CMPLXL(1000, 0x1p-1074),
278 CMPLXL(INFINITY, 9.73344457300016401328e+110), DBL_ULP());
279 test_tol(cexp, CMPLXL(1400, 0x1p-1074),
280 CMPLXL(INFINITY, 5.08228858149196559681e+284), DBL_ULP());
281 test_tol(cexp, CMPLXL(900, 0x1.23456789abcdep-1020),
282 CMPLXL(INFINITY, 7.42156649354218408074e+83), DBL_ULP());
283 test_tol(cexp, CMPLXL(1300, 0x1.23456789abcdep-1020),
284 CMPLXL(INFINITY, 3.87514844965996756704e+257), DBL_ULP());
286 test_tol(cexpf, CMPLXL(88.73, 0x1p-149),
287 CMPLXL(INFINITY, 4.80265603e-07), 2 * FLT_ULP());
288 test_tol(cexpf, CMPLXL(90, 0x1p-149),
289 CMPLXL(INFINITY, 1.7101492622e-06f), 2 * FLT_ULP());
290 test_tol(cexpf, CMPLXL(192, 0x1p-149),
291 CMPLXL(INFINITY, 3.396809344e+38f), 2 * FLT_ULP());
292 test_tol(cexpf, CMPLXL(120, 0x1.234568p-120),
293 CMPLXL(INFINITY, 1.1163382522e+16f), 2 * FLT_ULP());
294 test_tol(cexpf, CMPLXL(170, 0x1.234568p-120),
295 CMPLXL(INFINITY, 5.7878851079e+37f), 2 * FLT_ULP());