Home
last modified time | relevance | path

Searched refs:testall (Results 1 – 17 of 17) sorted by relevance

/freebsd-12.1/lib/msun/tests/
H A Dfma_test.c94 testall(0.0, 0.0, 0.0, 0.0, ALL_STD_EXCEPT, 0); in test_zeroes()
95 testall(1.0, 0.0, 0.0, 0.0, ALL_STD_EXCEPT, 0); in test_zeroes()
96 testall(0.0, 1.0, 0.0, 0.0, ALL_STD_EXCEPT, 0); in test_zeroes()
97 testall(0.0, 0.0, 1.0, 1.0, ALL_STD_EXCEPT, 0); in test_zeroes()
144 testall(INFINITY, INFINITY, -INFINITY, NAN, in test_infinities()
146 testall(-INFINITY, INFINITY, INFINITY, NAN, in test_infinities()
148 testall(INFINITY, -1.0, INFINITY, NAN, in test_infinities()
165 testall(NAN, 0.0, 0.0, NAN, ALL_STD_EXCEPT, 0); in test_nans()
166 testall(1.0, NAN, 1.0, NAN, ALL_STD_EXCEPT, 0); in test_nans()
168 testall(0.0, 0.0, NAN, NAN, ALL_STD_EXCEPT, 0); in test_nans()
[all …]
H A Dinvctrig_test.c174 testall(cacosh, z, nan_nan, OPT_INVALID, 0, 0); in test_nan()
175 testall(cacos, z, nan_nan, OPT_INVALID, 0, 0); in test_nan()
176 testall(casinh, z, nan_nan, OPT_INVALID, 0, 0); in test_nan()
177 testall(casin, z, nan_nan, OPT_INVALID, 0, 0); in test_nan()
178 testall(catanh, z, nan_nan, OPT_INVALID, 0, 0); in test_nan()
179 testall(catan, z, nan_nan, OPT_INVALID, 0, 0); in test_nan()
183 testall(cacos, z, nan_nan, OPT_INVALID, 0, 0); in test_nan()
185 testall(casin, z, nan_nan, OPT_INVALID, 0, 0); in test_nan()
187 testall(catan, z, nan_nan, OPT_INVALID, 0, 0); in test_nan()
219 testall(cacos, z, nan_nan, OPT_INVALID, 0, 0); in test_nan()
[all …]
H A Dcexp_test.c110 testall(0.0, 1.0, ALL_STD_EXCEPT, 0, 1); in test_zero()
111 testall(-0.0, 1.0, ALL_STD_EXCEPT, 0, 1); in test_zero()
129 testall(CMPLXL(finites[i], NAN), CMPLXL(NAN, NAN), in test_nan()
134 testall(CMPLXL(NAN, finites[i]), CMPLXL(NAN, NAN), in test_nan()
143 testall(CMPLXL(INFINITY, NAN), CMPLXL(INFINITY, NAN), in test_nan()
146 testall(CMPLXL(-INFINITY, NAN), CMPLXL(0.0, 0.0), in test_nan()
149 testall(CMPLXL(NAN, NAN), CMPLXL(NAN, NAN), in test_nan()
166 testall(CMPLXL(-INFINITY, M_PI_4), CMPLXL(0.0, 0.0), in test_inf()
174 testall(CMPLXL(-INFINITY, 0.0), CMPLXL(0.0, 0.0), in test_inf()
176 testall(CMPLXL(-INFINITY, -0.0), CMPLXL(0.0, -0.0), in test_inf()
[all …]
H A Dtrig_test.c95 testall(tan, 0.0, 0.0, ALL_STD_EXCEPT, 0); in ATF_TC_BODY()
96 testall(tan, -0.0, -0.0, ALL_STD_EXCEPT, 0); in ATF_TC_BODY()
97 testall(cos, 0.0, 1.0, ALL_STD_EXCEPT, 0); in ATF_TC_BODY()
98 testall(cos, -0.0, 1.0, ALL_STD_EXCEPT, 0); in ATF_TC_BODY()
99 testall(sin, 0.0, 0.0, ALL_STD_EXCEPT, 0); in ATF_TC_BODY()
100 testall(sin, -0.0, -0.0, ALL_STD_EXCEPT, 0); in ATF_TC_BODY()
111 testall(tan, NAN, NAN, ALL_STD_EXCEPT, 0); in ATF_TC_BODY()
112 testall(sin, NAN, NAN, ALL_STD_EXCEPT, 0); in ATF_TC_BODY()
113 testall(cos, NAN, NAN, ALL_STD_EXCEPT, 0); in ATF_TC_BODY()
235 testall(cos, 0xd.50ee515fe4aea16p-114L, 1.0, in ATF_TC_BODY()
[all …]
H A Dfmaxmin_test.c130 testall(1, 1.0, 0.0); in main()
132 testall(3, nextafterf(42.0, INFINITY), 42.0); in main()
133 testall(4, -5.0, -5.0); in main()
134 testall(5, -3.0, -4.0); in main()
138 testall(6, 1.0, NAN); in main()
139 testall(7, INFINITY, NAN); in main()
141 testall(8, INFINITY, 1.0); in main()
142 testall(9, -3.0, -INFINITY); in main()
143 testall(10, 3.0, -INFINITY); in main()
147 testall(11, NAN, NAN); in main()
[all …]
H A Dlrint_test.c73 testall(0.75, 0, FE_INEXACT); in run_tests()
74 testall(-0.5, -1, FE_INEXACT); in run_tests()
77 testall(0.0, 0, 0); in run_tests()
78 testall(0.25, 0, FE_INEXACT); in run_tests()
79 testall(0.5, 0, FE_INEXACT); in run_tests()
80 testall(-2.5, -2, FE_INEXACT); in run_tests()
81 testall(1.0, 1, 0); in run_tests()
82 testall(0x12345000p0, 0x12345000, 0); in run_tests()
83 testall(0x1234.fp0, 0x1235, FE_INEXACT); in run_tests()
84 testall(INFINITY, IGNORE, FE_INVALID); in run_tests()
[all …]
H A Dlround_test.c51 #define testall(x, result, excepts) do { \ macro
68 testall(0.0, 0, 0); in main()
69 testall(0.25, 0, FE_INEXACT); in main()
70 testall(0.5, 1, FE_INEXACT); in main()
71 testall(-0.5, -1, FE_INEXACT); in main()
72 testall(1.0, 1, 0); in main()
73 testall(0x12345000p0, 0x12345000, 0); in main()
74 testall(0x1234.fp0, 0x1235, FE_INEXACT); in main()
75 testall(INFINITY, IGNORE, FE_INVALID); in main()
76 testall(NAN, IGNORE, FE_INVALID); in main()
H A Dinvtrig_test.c130 testall(asin, 0.0, 0.0, 0); in test_special()
131 testall(acos, 0.0, pi / 2, FE_INEXACT); in test_special()
132 testall(atan, 0.0, 0.0, 0); in test_special()
133 testall(asin, -0.0, -0.0, 0); in test_special()
135 testall(atan, -0.0, -0.0, 0); in test_special()
144 testall(asin, NAN, NAN, 0); in test_special()
145 testall(acos, NAN, NAN, 0); in test_special()
146 testall(atan, NAN, NAN, 0); in test_special()
245 testall(acos, 1.0, 0, 0); in test_accuracy()
248 testall(acos, -1.0, pi, FE_INEXACT); in test_accuracy()
[all …]
H A Dnext_test.c65 #define testall(arg1, arg2, ans, ex) do { \ macro
129 testall(42.0, 42.0, 42.0, 0); in main()
130 testall(-42.0, -42.0, -42.0, 0); in main()
131 testall(INFINITY, INFINITY, INFINITY, 0); in main()
132 testall(-INFINITY, -INFINITY, -INFINITY, 0); in main()
133 testall(NAN, 42.0, NAN, 0); in main()
134 testall(42.0, NAN, NAN, 0); in main()
135 testall(NAN, NAN, NAN, 0); in main()
H A Dctrig_test.c101 #define testall(func, x, result, exceptmask, excepts, checksign) do { \ macro
106 testall(func, x, result, exceptmask, excepts, checksign); \
107 testall(func, -x, -result, exceptmask, excepts, checksign); \
110 testall(func, x, result, exceptmask, excepts, checksign); \
111 testall(func, -x, result, exceptmask, excepts, checksign); \
/freebsd-12.1/contrib/apr-util/test/
H A DMakefile.in15 STDTEST_PORTABLE = dbd testall
49 testall: $(OBJECTS_testall)
H A DMakefile.win72 $(OUTDIR)\testall.exe
132 $(OUTDIR)\testall.exe: $(ALL_TESTS) $(INTDIR)\abts.obj $(PROGRAM_DEPENDENCIES)
/freebsd-12.1/contrib/apr/
H A DREADME99 For more verbose output from testall, you may wish to invoke testall
103 ./testall -v
163 ./testall
H A DCMakeLists.txt313 ADD_EXECUTABLE(testall ${APR_TEST_SOURCES}) target
314 TARGET_LINK_LIBRARIES(testall ${whichapr} ${APR_SYSTEM_LIBS})
316 SET_TARGET_PROPERTIES(testall PROPERTIES COMPILE_FLAGS ${apiflag})
318 ADD_TEST(NAME testall COMMAND testall)
/freebsd-12.1/tools/tools/crypto/
H A Dcryptotest.c558 int testall = 0; in main() local
599 testall = 1; in main()
634 if (testall) { in main()
642 if (testall) { in main()
H A Dcryptocheck.c1488 bool testall; in main() local
1493 testall = false; in main()
1510 testall = true; in main()
1538 if (testall) { in main()
/freebsd-12.1/contrib/libstdc++/
H A DChangeLog-20002999 * testsuite/26_numerics/complex_inserters_extractors.cc (testall):