Home
last modified time | relevance | path

Searched refs:x_cond (Results 1 – 5 of 5) sorted by relevance

/glibc-2.36/sysdeps/m68k/m680x0/fpu/
De_atan2.c38 unsigned long y_cond, x_cond; in s() local
43 x_cond = __m81_test (x); in s()
45 if ((x_cond | y_cond) & __M81_COND_NAN) in s()
49 if (x_cond & __M81_COND_NEG) in s()
54 else if (x_cond & __M81_COND_INF) in s()
60 z = x_cond & __M81_COND_NEG ? 3 * pi_4 : pi_4; in s()
63 z = x_cond & __M81_COND_NEG ? pi : 0; in s()
69 else if (x_cond & __M81_COND_NEG) in s()
De_pow.c39 unsigned long x_cond, y_cond; in s() local
47 x_cond = __m81_test (x); in s()
48 if (x_cond & __M81_COND_NAN) in s()
67 if (y == 0.5 && !(x_cond & __M81_COND_NEG)) in s()
82 if (x_cond & (__M81_COND_INF | __M81_COND_ZERO) || ax == 1.0) in s()
87 if (x_cond & __M81_COND_NEG) in s()
100 if (x_cond & __M81_COND_NEG) in s()
Ds_modf_template.c26 unsigned long x_cond; in M_DECL_FUNC() local
30 x_cond = __m81_test (x); in M_DECL_FUNC()
31 if (x_cond & __M81_COND_INF) in M_DECL_FUNC()
34 if (x_cond & __M81_COND_NEG) in M_DECL_FUNC()
37 else if (x_cond & __M81_COND_ZERO) in M_DECL_FUNC()
De_ilogb.c36 unsigned long x_cond; in s() local
38 x_cond = __m81_test (x); in s()
40 if (x_cond & __M81_COND_ZERO) in s()
42 if (x_cond & (__M81_COND_NAN | __M81_COND_INF)) in s()
De_scalb.c38 unsigned long x_cond = __m81_test (x); in s() local
41 if ((x_cond | fn_cond) & __M81_COND_NAN) in s()
48 else if (x_cond & __M81_COND_ZERO) in s()