Lines Matching full:inf

69 	atf_tc_set_md_var(tc, "descr", "Test pow(-Inf, y) == +-Inf || +-0.0");  in ATF_TC_HEAD()
78 * If y is odd, y > 0, and x is -Inf, -Inf is returned. in ATF_TC_BODY()
79 * If y is even, y > 0, and x is -Inf, +Inf is returned. in ATF_TC_BODY()
84 atf_tc_fail_nonfatal("pow(-Inf, 3.0) != -Inf"); in ATF_TC_BODY()
89 atf_tc_fail_nonfatal("pow(-Inf, 4.0) != +Inf"); in ATF_TC_BODY()
92 * If y is odd, y < 0, and x is -Inf, -0.0 is returned. in ATF_TC_BODY()
93 * If y is even, y < 0, and x is -Inf, +0.0 is returned. in ATF_TC_BODY()
98 atf_tc_fail_nonfatal("pow(-Inf, -3.0) != -0.0"); in ATF_TC_BODY()
103 atf_tc_fail_nonfatal("pow(-Inf -4.0) != +0.0"); in ATF_TC_BODY()
109 atf_tc_set_md_var(tc, "descr", "Test pow(x, -Inf) == +Inf || +0.0"); in ATF_TC_HEAD()
118 * If |x| < 1 and y is -Inf, +Inf is returned. in ATF_TC_BODY()
119 * If |x| > 1 and y is -Inf, +0.0 is returned. in ATF_TC_BODY()
124 atf_tc_fail_nonfatal("pow(0.1, -Inf) != +Inf"); in ATF_TC_BODY()
129 atf_tc_fail_nonfatal("pow(1.1, -Inf) != +0.0"); in ATF_TC_BODY()
135 atf_tc_set_md_var(tc, "descr", "Test pow(+Inf, y) == +Inf || +0.0"); in ATF_TC_HEAD()
144 * For y < 0, if x is +Inf, +0.0 is returned. in ATF_TC_BODY()
145 * For y > 0, if x is +Inf, +Inf is returned. in ATF_TC_BODY()
150 atf_tc_fail_nonfatal("pow(+Inf, -2.0) != +0.0"); in ATF_TC_BODY()
155 atf_tc_fail_nonfatal("pow(+Inf, 2.0) != +Inf"); in ATF_TC_BODY()
161 atf_tc_set_md_var(tc, "descr", "Test pow(x, +Inf) == +Inf || +0.0"); in ATF_TC_HEAD()
170 * If |x| < 1 and y is +Inf, +0.0 is returned. in ATF_TC_BODY()
171 * If |x| > 1 and y is +Inf, +Inf is returned. in ATF_TC_BODY()
176 atf_tc_fail_nonfatal("pow(0.1, +Inf) != +0.0"); in ATF_TC_BODY()
181 atf_tc_fail_nonfatal("pow(1.1, +Inf) != +Inf"); in ATF_TC_BODY()
187 atf_tc_set_md_var(tc, "descr", "Test pow(-1.0, +-Inf) == 1.0"); in ATF_TC_HEAD()
196 * If x is -1.0, and y is +-Inf, 1.0 shall be returned. in ATF_TC_BODY()
203 atf_tc_fail_nonfatal("pow(-1.0, +Inf) != 1.0"); in ATF_TC_BODY()
208 atf_tc_fail_nonfatal("pow(-1.0, -Inf) != 1.0"); in ATF_TC_BODY()
368 atf_tc_set_md_var(tc, "descr", "Test powf(-Inf, y) == +-Inf || +-0.0"); in ATF_TC_HEAD()
377 * If y is odd, y > 0, and x is -Inf, -Inf is returned. in ATF_TC_BODY()
378 * If y is even, y > 0, and x is -Inf, +Inf is returned. in ATF_TC_BODY()
383 atf_tc_fail_nonfatal("powf(-Inf, 3.0) != -Inf"); in ATF_TC_BODY()
388 atf_tc_fail_nonfatal("powf(-Inf, 4.0) != +Inf"); in ATF_TC_BODY()
391 * If y is odd, y < 0, and x is -Inf, -0.0 is returned. in ATF_TC_BODY()
392 * If y is even, y < 0, and x is -Inf, +0.0 is returned. in ATF_TC_BODY()
398 atf_tc_fail_nonfatal("powf(-Inf, -3.0) != -0.0"); in ATF_TC_BODY()
404 atf_tc_fail_nonfatal("powf(-Inf -4.0) != +0.0"); in ATF_TC_BODY()
410 atf_tc_set_md_var(tc, "descr", "Test powf(x, -Inf) == +Inf || +0.0"); in ATF_TC_HEAD()
419 * If |x| < 1 and y is -Inf, +Inf is returned. in ATF_TC_BODY()
420 * If |x| > 1 and y is -Inf, +0.0 is returned. in ATF_TC_BODY()
425 atf_tc_fail_nonfatal("powf(0.1, -Inf) != +Inf"); in ATF_TC_BODY()
430 atf_tc_fail_nonfatal("powf(1.1, -Inf) != +0.0"); in ATF_TC_BODY()
436 atf_tc_set_md_var(tc, "descr", "Test powf(+Inf, y) == +Inf || +0.0"); in ATF_TC_HEAD()
445 * For y < 0, if x is +Inf, +0.0 is returned. in ATF_TC_BODY()
446 * For y > 0, if x is +Inf, +Inf is returned. in ATF_TC_BODY()
451 atf_tc_fail_nonfatal("powf(+Inf, -2.0) != +0.0"); in ATF_TC_BODY()
456 atf_tc_fail_nonfatal("powf(+Inf, 2.0) != +Inf"); in ATF_TC_BODY()
462 atf_tc_set_md_var(tc, "descr", "Test powf(x, +Inf) == +Inf || +0.0"); in ATF_TC_HEAD()
471 * If |x| < 1 and y is +Inf, +0.0 is returned. in ATF_TC_BODY()
472 * If |x| > 1 and y is +Inf, +Inf is returned. in ATF_TC_BODY()
477 atf_tc_fail_nonfatal("powf(0.1, +Inf) != +0.0"); in ATF_TC_BODY()
482 atf_tc_fail_nonfatal("powf(1.1, +Inf) != +Inf"); in ATF_TC_BODY()
488 atf_tc_set_md_var(tc, "descr", "Test powf(-1.0, +-Inf) == 1.0"); in ATF_TC_HEAD()
497 * If x is -1.0, and y is +-Inf, 1.0 shall be returned. in ATF_TC_BODY()
504 atf_tc_fail_nonfatal("powf(-1.0, +Inf) != 1.0"); in ATF_TC_BODY()
509 atf_tc_fail_nonfatal("powf(-1.0, -Inf) != 1.0"); in ATF_TC_BODY()
643 atf_tc_set_md_var(tc, "descr", "Test powf(->1, huge) != inf"); in ATF_TC_HEAD()