Home
last modified time | relevance | path

Searched refs:y_cond (Results 1 – 2 of 2) sorted by relevance

/glibc-2.36/sysdeps/m68k/m680x0/fpu/
De_atan2.c38 unsigned long y_cond, x_cond; in s() local
42 y_cond = __m81_test (y); in s()
45 if ((x_cond | y_cond) & __M81_COND_NAN) in s()
47 else if (y_cond & __M81_COND_ZERO) in s()
50 z = y_cond & __M81_COND_NEG ? -pi : pi; in s()
56 if (y_cond & __M81_COND_INF) in s()
64 if (y_cond & __M81_COND_NEG) in s()
67 else if (y_cond & __M81_COND_INF) in s()
68 z = y_cond & __M81_COND_NEG ? -pi_2 : pi_2; in s()
71 if (y_cond & __M81_COND_NEG) in s()
[all …]
De_pow.c39 unsigned long x_cond, y_cond; in s() local
41 y_cond = __m81_test (y); in s()
42 if (y_cond & __M81_COND_ZERO) in s()
44 if (y_cond & __M81_COND_NAN) in s()
51 if (y_cond & __M81_COND_INF) in s()
57 return y_cond & __M81_COND_NEG ? 0 : y; in s()
59 return y_cond & __M81_COND_NEG ? -y : 0; in s()
63 return y_cond & __M81_COND_NEG ? 1 / x : x; in s()
85 if (y_cond & __M81_COND_NEG) in s()