roundl 104 maint/gnulib/lib/exp2l.c long double nm = roundl (x * 256.0L); /* = 256 * n + m */ roundl 129 maint/gnulib/lib/exp2l.c int n = (int) roundl (nm * (1.0L / 256.0L)); roundl 113 maint/gnulib/lib/expl.c long double nm = roundl (x * LOG2_BY_256_INVERSE); /* = 256 * n + m */ roundl 143 maint/gnulib/lib/expl.c int n = (int) roundl (nm * (1.0L / 256.0L)); roundl 123 maint/gnulib/lib/expm1l.c long double nm = roundl (x * LOG2_BY_256_INVERSE); /* = 256 * n + m */ roundl 153 maint/gnulib/lib/expm1l.c int n = (int) roundl (nm * (1.0L / 256.0L)); roundl 108 maint/gnulib/lib/log1pl.c long double m = roundl (x * 256.0L); roundl 2085 maint/gnulib/lib/math.in.h _GL_FUNCDECL_RPL (roundl, long double, (long double x)); roundl 2086 maint/gnulib/lib/math.in.h _GL_CXXALIAS_RPL (roundl, long double, (long double x)); roundl 2091 maint/gnulib/lib/math.in.h _GL_FUNCDECL_SYS (roundl, long double, (long double x)); roundl 2094 maint/gnulib/lib/math.in.h _GL_CXXALIAS_SYS (roundl, long double, (long double x)); roundl 2096 maint/gnulib/lib/math.in.h _GL_CXXALIASWARN (roundl); roundl 2100 maint/gnulib/lib/math.in.h _GL_WARN_ON_USE (roundl, "roundl is unportable - " roundl 32 maint/gnulib/lib/round.c # define ROUND roundl roundl 331 maint/gnulib/tests/test-math-c++.cc SIGNATURE_CHECK (GNULIB_NAMESPACE::roundl, long double, (long double)); roundl 41 maint/gnulib/tests/test-roundl-ieee.c ASSERT (!signbit (roundl (0.0L))); roundl 42 maint/gnulib/tests/test-roundl-ieee.c ASSERT (!!signbit (roundl (minus_zerol)) == !!signbit (minus_zerol)); roundl 44 maint/gnulib/tests/test-roundl-ieee.c ASSERT (!signbit (roundl (0.3L))); roundl 45 maint/gnulib/tests/test-roundl-ieee.c ASSERT (!signbit (roundl (0.7L))); roundl 47 maint/gnulib/tests/test-roundl-ieee.c ASSERT (!!signbit (roundl (-0.3L)) == !!signbit (minus_zerol)); roundl 48 maint/gnulib/tests/test-roundl-ieee.c ASSERT (!!signbit (roundl (-0.7L)) == !!signbit (minus_zerol)); roundl 53 maint/gnulib/tests/test-roundl-ieee.c ASSERT (isnanl (roundl (NaNl ()))); roundl 55 maint/gnulib/tests/test-roundl-ieee.c ASSERT (roundl (Infinityl ()) == Infinityl ()); roundl 56 maint/gnulib/tests/test-roundl-ieee.c ASSERT (roundl (- Infinityl ()) == - Infinityl ()); roundl 25 maint/gnulib/tests/test-roundl.c SIGNATURE_CHECK (roundl, long double, (long double)); roundl 44 maint/gnulib/tests/test-roundl.c ASSERT (roundl (0.0L) == 0.0L); roundl 45 maint/gnulib/tests/test-roundl.c ASSERT (roundl (minus_zerol) == 0.0L); roundl 47 maint/gnulib/tests/test-roundl.c ASSERT (roundl (0.3L) == 0.0L); roundl 48 maint/gnulib/tests/test-roundl.c ASSERT (roundl (0.5L) == 1.0L); roundl 49 maint/gnulib/tests/test-roundl.c ASSERT (roundl (0.7L) == 1.0L); roundl 50 maint/gnulib/tests/test-roundl.c ASSERT (roundl (1.0L) == 1.0L); roundl 51 maint/gnulib/tests/test-roundl.c ASSERT (roundl (1.5L) == 2.0L); roundl 52 maint/gnulib/tests/test-roundl.c ASSERT (roundl (2.5L) == 3.0L); roundl 53 maint/gnulib/tests/test-roundl.c ASSERT (roundl (1.999L) == 2.0L); roundl 54 maint/gnulib/tests/test-roundl.c ASSERT (roundl (2.0L) == 2.0L); roundl 55 maint/gnulib/tests/test-roundl.c ASSERT (roundl (65535.999L) == 65536.0L); roundl 56 maint/gnulib/tests/test-roundl.c ASSERT (roundl (65536.0L) == 65536.0L); roundl 57 maint/gnulib/tests/test-roundl.c ASSERT (roundl (65536.001L) == 65536.0L); roundl 58 maint/gnulib/tests/test-roundl.c ASSERT (roundl (2.341e31L) == 2.341e31L); roundl 60 maint/gnulib/tests/test-roundl.c ASSERT (roundl (-0.3L) == 0.0L); roundl 61 maint/gnulib/tests/test-roundl.c ASSERT (roundl (-0.5L) == -1.0L); roundl 62 maint/gnulib/tests/test-roundl.c ASSERT (roundl (-0.7L) == -1.0L); roundl 63 maint/gnulib/tests/test-roundl.c ASSERT (roundl (-1.0L) == -1.0L); roundl 64 maint/gnulib/tests/test-roundl.c ASSERT (roundl (-1.5L) == -2.0L); roundl 65 maint/gnulib/tests/test-roundl.c ASSERT (roundl (-2.5L) == -3.0L); roundl 66 maint/gnulib/tests/test-roundl.c ASSERT (roundl (-1.999L) == -2.0L); roundl 67 maint/gnulib/tests/test-roundl.c ASSERT (roundl (-2.0L) == -2.0L); roundl 68 maint/gnulib/tests/test-roundl.c ASSERT (roundl (-65535.999L) == -65536.0L); roundl 69 maint/gnulib/tests/test-roundl.c ASSERT (roundl (-65536.0L) == -65536.0L); roundl 70 maint/gnulib/tests/test-roundl.c ASSERT (roundl (-65536.001L) == -65536.0L); roundl 71 maint/gnulib/tests/test-roundl.c ASSERT (roundl (-2.341e31L) == -2.341e31L); roundl 73 maint/gnulib/tests/test-roundl.c ASSERT (roundl (Infinityl ()) == Infinityl ()); roundl 74 maint/gnulib/tests/test-roundl.c ASSERT (roundl (- Infinityl ()) == - Infinityl ()); roundl 76 maint/gnulib/tests/test-roundl.c ASSERT (isnanl (roundl (NaNl ())));