Lines Matching refs:finite
25 * @tc.desc : The parameter is 0.0, it is judged that the parameter is a finite value.
30 int ret = finite(0.0);
36 * @tc.desc : The parameter is DBL_MIN/2.0, and it is judged that the parameter is a finite value
41 int ret = finite(__DBL_MIN__ / 2);
47 * @tc.desc : If the parameter is NAN, it is judged that the parameter is not a finite value.
52 int ret = finite(NAN);
58 * @tc.desc : If the parameter is INFINITY, it is judged that the parameter is not a finite value.
63 int ret = finite(INFINITY);
69 * @tc.desc : If the parameter is sqrt(-1.0), it is judged that the parameter is not a finite value.
74 int ret = finite(sqrt(-1.0));
80 * @tc.desc : If the parameter is exp(800), it is judged that the parameter is not a finite value.
85 int ret = finite(exp(800));