Symbol: floor
crypto/krb5/src/util/verto/ev.c
1590
# define ev_floor(v) floor (v)
include/tgmath.h
172
#define floor(x) __tg_simple(x, floor)
lib/libc/tests/stdbit/stdc_bit_floor_test.c
12
type floor = 1; \
lib/libc/tests/stdbit/stdc_bit_floor_test.c
18
floor <<= 1; \
lib/libc/tests/stdbit/stdc_bit_floor_test.c
22
return (floor); \
lib/liblua/luaconf.h
407
#define l_floor(x) (l_mathop(floor)(x))
lib/msun/src/k_rem_pio2.c
324
z -= 8.0*floor(z*0.125); /* trim off integer >= 8 */
lib/msun/src/math.h
261
double floor(double);
lib/msun/src/s_floor.c
73
__weak_reference(floor, floorl);
lib/msun/src/s_round.c
45
t = floor(x);
lib/msun/src/s_round.c
50
t = floor(-x);
sbin/pfctl/parse.y
3342
p = floor($2 * UINT_MAX + 0.5);
stand/liblua/luaconf.h
400
#define l_floor(x) (l_mathop(floor)(x))
sys/compat/linuxkpi/common/include/linux/random.h
73
get_random_u32_inclusive(uint32_t floor, uint32_t ceil)
sys/compat/linuxkpi/common/include/linux/random.h
78
MPASS(ceil >= floor);
sys/compat/linuxkpi/common/include/linux/random.h
81
t = ceil - floor + 1;
sys/compat/linuxkpi/common/include/linux/random.h
87
return (floor + v);
tools/regression/include/tgmath/tgmath.c
111
TGMACRO_REAL(floor)
tools/regression/include/tgmath/tgmath.c
504
PASS_REAL_ARG_REAL_RET(floor));
usr.bin/calendar/parsedata.c
1032
f -= floor(f);
usr.bin/calendar/parsedata.c
1055
d = floor(f - 1 - cumdays[i]);
usr.bin/calendar/parsedata.c
1056
f -= floor(f);
usr.bin/calendar/parsedata.c
518
floor(yearinfo->fnewmooncny[m - 1]);
usr.bin/calendar/parsedata.c
716
floor(yearinfo->ffullmoon[i]) + offset,
usr.bin/calendar/parsedata.c
738
floor(yearinfo->fnewmoon[i]) + offset,
usr.bin/calendar/pom.c
197
p1 -= floor(p1);
usr.bin/calendar/sunpos.c
111
D = floor(365.25 * Y) + ZJ + inDD + UTHM / FHOURSPERDAY; /* 3 */
usr.bin/seq/seq.c
475
last = first - incr * floor((first - last) / incr);
usr.bin/seq/seq.c
477
last = first + incr * floor((last - first) / incr);
usr.sbin/pmcstat/pmcstat.c
1165
display_width = (int) floor(counter_width / 3.32193) + 1;