Symbol: RETURNF
lib/msun/ld128/s_expl.c
215
RETURNF(-1 / x - 1);
lib/msun/ld128/s_expl.c
216
RETURNF(x + x); /* x is +Inf or +NaN */
lib/msun/ld128/s_expl.c
219
RETURNF(huge * huge);
lib/msun/ld128/s_expl.c
228
RETURNF(tiny - 1); /* good for x < -114ln2 - eps */
lib/msun/ld128/s_expl.c
72
RETURNF(-1 / x);
lib/msun/ld128/s_expl.c
73
RETURNF(x + x); /* x is +Inf or +NaN */
lib/msun/ld128/s_expl.c
76
RETURNF(huge * huge);
lib/msun/ld128/s_expl.c
78
RETURNF(tiny * tiny);
lib/msun/ld128/s_expl.c
80
RETURNF(1 + x); /* 1 with inexact iff x != 0 */
lib/msun/ld128/s_logl.c
442
#define RETURN1(rp, v) RETURNF(v)
lib/msun/ld128/s_logl.c
578
RETURNF(-1 / zero); /* log1p(-1) = -Inf */
lib/msun/ld128/s_logl.c
580
RETURNF((x - x) / (x - x));
lib/msun/ld128/s_logl.c
584
RETURNF(x); /* x with inexact if x != 0 */
lib/msun/ld128/s_logl.c
589
RETURNF(x + x); /* log1p(Inf or NaN) = Inf or qNaN */
lib/msun/ld80/s_expl.c
173
RETURNF(-1 / x - 1);
lib/msun/ld80/s_expl.c
174
RETURNF(x + x); /* x is +Inf, +NaN or unsupported */
lib/msun/ld80/s_expl.c
177
RETURNF(huge * huge);
lib/msun/ld80/s_expl.c
186
RETURNF(tiny - 1); /* good for x < -65ln2 - eps */
lib/msun/ld80/s_expl.c
84
RETURNF(-1 / x);
lib/msun/ld80/s_expl.c
85
RETURNF(x + x); /* x is +Inf, +NaN or unsupported */
lib/msun/ld80/s_expl.c
88
RETURNF(huge * huge);
lib/msun/ld80/s_expl.c
90
RETURNF(tiny * tiny);
lib/msun/ld80/s_expl.c
92
RETURNF(1 + x); /* 1 with inexact iff x != 0 */
lib/msun/ld80/s_logl.c
442
#define RETURN1(rp, v) RETURNF(v)
lib/msun/ld80/s_logl.c
565
RETURNF(-1 / zero); /* log1p(-1) = -Inf */
lib/msun/ld80/s_logl.c
567
RETURNF((x - x) / (x - x));
lib/msun/ld80/s_logl.c
571
RETURNF(x); /* x with inexact if x != 0 */
lib/msun/ld80/s_logl.c
576
RETURNF(x + x); /* log1p(Inf or NaN) = Inf or qNaN */
lib/msun/src/math_private.h
347
RETURNF(__retval); \
lib/msun/src/math_private.h
362
#define RETURNI(x) RETURNF(x)
lib/msun/src/math_private.h
790
RETURNF((rp)->hi); \
lib/msun/src/math_private.h
791
RETURNF((rp)->hi + (rp)->lo); \