Lines Matching refs:testboth
59 #define testboth(arg1, arg2, ans, ex, prec) do { \ macro
64 testboth((arg1), (arg2), (ans), (ex), ); \
65 testboth((arg1), (arg2), (ans), (ex), f); \
66 testboth((arg1), (arg2), (ans), (ex), l); \
144 testboth(1.0, 2.0, 1.0 + DBL_EPSILON, 0, ); in ATF_TC_BODY()
145 testboth(1.0, -INFINITY, 1.0 - DBL_EPSILON / 2, 0, ); in ATF_TC_BODY()
146 testboth(1.0, 2.0, 1.0 + FLT_EPSILON, 0, f); in ATF_TC_BODY()
147 testboth(1.0, -INFINITY, 1.0 - FLT_EPSILON / 2, 0, f); in ATF_TC_BODY()
148 testboth(1.0, 2.0, 1.0 + ldbl_eps, 0, l); in ATF_TC_BODY()
149 testboth(1.0, -INFINITY, 1.0 - ldbl_eps / 2, 0, l); in ATF_TC_BODY()
151 testboth(-1.0, 2.0, -1.0 + DBL_EPSILON / 2, 0, ); in ATF_TC_BODY()
152 testboth(-1.0, -INFINITY, -1.0 - DBL_EPSILON, 0, ); in ATF_TC_BODY()
153 testboth(-1.0, 2.0, -1.0 + FLT_EPSILON / 2, 0, f); in ATF_TC_BODY()
154 testboth(-1.0, -INFINITY, -1.0 - FLT_EPSILON, 0, f); in ATF_TC_BODY()
155 testboth(-1.0, 2.0, -1.0 + ldbl_eps / 2, 0, l); in ATF_TC_BODY()
156 testboth(-1.0, -INFINITY, -1.0 - ldbl_eps, 0, l); in ATF_TC_BODY()
170 testboth(0x1.87654ffffffffp+0, INFINITY, 0x1.87655p+0, 0, ); in ATF_TC_BODY()
171 testboth(0x1.87655p+0, -INFINITY, 0x1.87654ffffffffp+0, 0, ); in ATF_TC_BODY()
172 testboth(0x1.fffffffffffffp+0, INFINITY, 0x1p1, 0, ); in ATF_TC_BODY()
173 testboth(0x1p1, -INFINITY, 0x1.fffffffffffffp+0, 0, ); in ATF_TC_BODY()
174 testboth(0x0.fffffffffffffp-1022, INFINITY, 0x1p-1022, 0, ); in ATF_TC_BODY()
175 testboth(0x1p-1022, -INFINITY, 0x0.fffffffffffffp-1022, ex_under, ); in ATF_TC_BODY()
177 testboth(0x1.fffffep0f, INFINITY, 0x1p1, 0, f); in ATF_TC_BODY()
178 testboth(0x1p1, -INFINITY, 0x1.fffffep0f, 0, f); in ATF_TC_BODY()
179 testboth(0x0.fffffep-126f, INFINITY, 0x1p-126f, 0, f); in ATF_TC_BODY()
180 testboth(0x1p-126f, -INFINITY, 0x0.fffffep-126f, ex_under, f); in ATF_TC_BODY()
183 testboth(0x1.87654ffffffffp+0L, INFINITY, 0x1.87655p+0L, 0, l); in ATF_TC_BODY()
184 testboth(0x1.87655p+0L, -INFINITY, 0x1.87654ffffffffp+0L, 0, l); in ATF_TC_BODY()
185 testboth(0x1.fffffffffffffp+0L, INFINITY, 0x1p1L, 0, l); in ATF_TC_BODY()
186 testboth(0x1p1L, -INFINITY, 0x1.fffffffffffffp+0L, 0, l); in ATF_TC_BODY()
187 testboth(0x0.fffffffffffffp-1022L, INFINITY, 0x1p-1022L, 0, l); in ATF_TC_BODY()
188 testboth(0x1p-1022L, -INFINITY, 0x0.fffffffffffffp-1022L, ex_under, l); in ATF_TC_BODY()
190 testboth(0x1.87654321fffffffep+0L, INFINITY, 0x1.87654322p+0L, 0, l); in ATF_TC_BODY()
191 testboth(0x1.87654322p+0L, -INFINITY, 0x1.87654321fffffffep+0L, 0, l); in ATF_TC_BODY()
192 testboth(0x1.fffffffffffffffep0L, INFINITY, 0x1p1L, 0, l); in ATF_TC_BODY()
193 testboth(0x1p1L, -INFINITY, 0x1.fffffffffffffffep0L, 0, l); in ATF_TC_BODY()
194 testboth(0x0.fffffffffffffffep-16382L, INFINITY, 0x1p-16382L, 0, l); in ATF_TC_BODY()
195 testboth(0x1p-16382L, -INFINITY, in ATF_TC_BODY()
198 testboth(0x1.876543210987ffffffffffffffffp+0L, INFINITY, in ATF_TC_BODY()
200 testboth(0x1.876543210988p+0L, -INFINITY, in ATF_TC_BODY()
202 testboth(0x1.ffffffffffffffffffffffffffffp0L, INFINITY, 0x1p1L, 0, l); in ATF_TC_BODY()
203 testboth(0x1p1L, -INFINITY, 0x1.ffffffffffffffffffffffffffffp0L, 0, l); in ATF_TC_BODY()
204 testboth(0x0.ffffffffffffffffffffffffffffp-16382L, INFINITY, in ATF_TC_BODY()
206 testboth(0x1p-16382L, -INFINITY, in ATF_TC_BODY()
237 testboth(ldbl_max, INFINITY, INFINITY, ex_over, l); in ATF_TC_BODY()
238 testboth(INFINITY, 0.0, ldbl_max, 0, l); in ATF_TC_BODY()