Home | History | Annotate | Download | only in lib

Lines Matching refs:DOUBLE

24 extern int rpl_isnanl (long double x) _GL_ATTRIBUTE_CONST;
27 extern int rpl_isnand (double x);
40 # define DOUBLE long double
52 # define DOUBLE double
64 # define DOUBLE float
79 ((sizeof (DOUBLE) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
80 typedef union { DOUBLE value; unsigned int word[NWORDS]; } memory_double;
83 FUNC (DOUBLE x)
130 static DOUBLE zero = L_(0.0);
132 DOUBLE plus_inf = L_(1.0) / zero;
133 DOUBLE minus_inf = -L_(1.0) / zero;
137 static DOUBLE plus_inf = L_(1.0) / L_(0.0);
138 static DOUBLE minus_inf = -L_(1.0) / L_(0.0);