Searched refs:testall (Results 1 - 10 of 10) sorted by relevance

/freebsd-9.3-release/tools/regression/lib/msun/
H A Dtest-fmaxmin.c109 testall(int testnum, long double big, long double small) function
134 testall(1, 1.0, 0.0);
135 testall(2, 42.0, nextafterf(42.0, -INFINITY));
136 testall(3, nextafterf(42.0, INFINITY), 42.0);
137 testall(4, -5.0, -5.0);
138 testall(5, -3.0, -4.0);
139 testall(6, 1.0, NAN);
140 testall(7, INFINITY, NAN);
141 testall(8, INFINITY, 1.0);
142 testall(
[all...]
H A Dtest-trig.c72 #define testall(prefix, x, result, exceptmask, excepts) do { \ macro
104 testall(tan, 0.0, 0.0, ALL_STD_EXCEPT, 0);
105 testall(tan, -0.0, -0.0, ALL_STD_EXCEPT, 0);
106 testall(cos, 0.0, 1.0, ALL_STD_EXCEPT, 0);
107 testall(cos, -0.0, 1.0, ALL_STD_EXCEPT, 0);
108 testall(sin, 0.0, 0.0, ALL_STD_EXCEPT, 0);
109 testall(sin, -0.0, -0.0, ALL_STD_EXCEPT, 0);
112 testall(tan, INFINITY, NAN, ALL_STD_EXCEPT, FE_INVALID);
113 testall(sin, INFINITY, NAN, ALL_STD_EXCEPT, FE_INVALID);
114 testall(co
[all...]
H A Dtest-lrint.c55 #define testall(x, result, excepts) do { \ macro
73 testall(0.75, 0, FE_INEXACT);
74 testall(-0.5, -1, FE_INEXACT);
77 testall(0.0, 0, 0);
78 testall(0.25, 0, FE_INEXACT);
79 testall(0.5, 0, FE_INEXACT);
80 testall(-2.5, -2, FE_INEXACT);
81 testall(1.0, 1, 0);
82 testall(0x12345000p0, 0x12345000, 0);
83 testall(
[all...]
H A Dtest-fma.c61 #define testall(x, y, z, result, exceptmask, excepts) do { \ macro
97 testall(0.0, 0.0, 0.0, 0.0, ALL_STD_EXCEPT, 0);
98 testall(1.0, 0.0, 0.0, 0.0, ALL_STD_EXCEPT, 0);
99 testall(0.0, 1.0, 0.0, 0.0, ALL_STD_EXCEPT, 0);
100 testall(0.0, 0.0, 1.0, 1.0, ALL_STD_EXCEPT, 0);
102 testall(-0.0, 0.0, 0.0, rd ? -0.0 : 0.0, ALL_STD_EXCEPT, 0);
103 testall(0.0, -0.0, 0.0, rd ? -0.0 : 0.0, ALL_STD_EXCEPT, 0);
104 testall(-0.0, -0.0, 0.0, 0.0, ALL_STD_EXCEPT, 0);
105 testall(0.0, 0.0, -0.0, rd ? -0.0 : 0.0, ALL_STD_EXCEPT, 0);
106 testall(
[all...]
H A Dtest-lround.c51 #define testall(x, result, excepts) do { \ macro
68 testall(0.0, 0, 0);
69 testall(0.25, 0, FE_INEXACT);
70 testall(0.5, 1, FE_INEXACT);
71 testall(-0.5, -1, FE_INEXACT);
72 testall(1.0, 1, 0);
73 testall(0x12345000p0, 0x12345000, 0);
74 testall(0x1234.fp0, 0x1235, FE_INEXACT);
75 testall(INFINITY, IGNORE, FE_INVALID);
76 testall(NA
[all...]
H A Dtest-cexp.c97 #define testall(x, result, exceptmask, excepts, checksign) do { \ macro
183 testall(0.0, 1.0, ALL_STD_EXCEPT, 0, 1);
184 testall(-0.0, 1.0, ALL_STD_EXCEPT, 0, 1);
185 testall(cpackl(0.0, -0.0), cpackl(1.0, -0.0), ALL_STD_EXCEPT, 0, 1);
186 testall(cpackl(-0.0, -0.0), cpackl(1.0, -0.0), ALL_STD_EXCEPT, 0, 1);
201 testall(cpackl(finites[i], NAN), cpackl(NAN, NAN),
206 testall(cpackl(NAN, finites[i]), cpackl(NAN, NAN),
211 testall(cpackl(NAN, 0.0), cpackl(NAN, 0.0), ALL_STD_EXCEPT, 0, 1);
212 testall(cpackl(NAN, -0.0), cpackl(NAN, -0.0), ALL_STD_EXCEPT, 0, 1);
215 testall(cpack
[all...]
H A Dtest-invtrig.c52 * relative error allowed may be specified. For the 'testall'
75 #define testall(prefix, x, result, excepts) \ macro
143 testall(asin, 0.0, 0.0, 0);
144 testall(acos, 0.0, pi / 2, FE_INEXACT);
145 testall(atan, 0.0, 0.0, 0);
146 testall(asin, -0.0, -0.0, 0);
147 testall(acos, -0.0, pi / 2, FE_INEXACT);
148 testall(atan, -0.0, -0.0, 0);
150 testall(asin, INFINITY, NAN, FE_INVALID);
151 testall(aco
[all...]
H A Dtest-next.c65 #define testall(arg1, arg2, ans, ex) do { \ macro
129 testall(42.0, 42.0, 42.0, 0);
130 testall(-42.0, -42.0, -42.0, 0);
131 testall(INFINITY, INFINITY, INFINITY, 0);
132 testall(-INFINITY, -INFINITY, -INFINITY, 0);
133 testall(NAN, 42.0, NAN, 0);
134 testall(42.0, NAN, NAN, 0);
135 testall(NAN, NAN, NAN, 0);
/freebsd-9.3-release/tools/tools/crypto/
H A Dcryptotest.c521 int testall = 0; local
552 testall = 1;
584 if (testall) {
592 if (testall) {
/freebsd-9.3-release/crypto/openssl/util/
H A Dmkdef.pl1186 (*OUT,my $name,*nums,my $testall,my @symbols)=@_;

Completed in 178 milliseconds