Symbol: lround
include/tgmath.h
189
#define lround(x) __tg_simple(x, lround)
lib/msun/src/math.h
286
long lround(double);
lib/msun/src/s_lround.c
39
#define fn lround
lib/msun/tests/lround_test.c
57
test(lround, x, result, excepts); \
lib/msun/tests/lround_test.c
82
test(lround, 0x7fffffff.8p0, IGNORE, FE_INVALID);
lib/msun/tests/lround_test.c
83
test(lround, -0x80000000.8p0, IGNORE, FE_INVALID);
lib/msun/tests/lround_test.c
84
test(lround, 0x80000000.0p0, IGNORE, FE_INVALID);
lib/msun/tests/lround_test.c
85
test(lround, 0x7fffffff.4p0, 0x7fffffffl, FE_INEXACT);
lib/msun/tests/lround_test.c
86
test(lround, -0x80000000.4p0, -0x80000000l, FE_INEXACT);
lib/msun/tests/lround_test.c
90
test(lround, 0x8000000000000000.0p0, IGNORE, FE_INVALID);
lib/msun/tests/lround_test.c
92
test(lround, 0x7ffffffffffffc00.0p0, 0x7ffffffffffffc00l, 0);
lib/msun/tests/lround_test.c
94
test(lround, -0x8000000000000800.0p0, IGNORE, FE_INVALID);
lib/msun/tests/lround_test.c
96
test(lround, -0x8000000000000000.0p0, (long)-0x8000000000000000l, 0);
tools/regression/include/tgmath/tgmath.c
135
TGMACRO_REAL_FIXED_RET(lround, long)
tools/regression/include/tgmath/tgmath.c
557
PASS_REAL_ARG_FIXED_RET(lround, long));
usr.sbin/moused/moused/moused.c
877
*movex = lround(fdx);
usr.sbin/moused/moused/moused.c
878
*movey = lround(fdy);
usr.sbin/moused/moused/moused.c
879
*movez = lround(fdz);
usr.sbin/moused/moused/moused.c
914
*movex = lround(fdx);
usr.sbin/moused/moused/moused.c
915
*movey = lround(fdy);
usr.sbin/moused/moused/moused.c
916
*movez = lround(fdz);