Home
last modified time | relevance | path

Searched defs:roundup2 (Results 1 – 8 of 8) sorted by relevance

/freebsd/tests/atf_python/sys/netpfil/ipfw/
H A Dutils.py18 def roundup2(val: int, num: int) -> int: function
/freebsd/tests/atf_python/sys/netlink/
H A Dutils.py16 def roundup2(val: int, num: int) -> int: function
/freebsd/tools/build/cross-build/include/common/sys/
H A Dparam.h84 #define roundup2(x, y) \ macro
/freebsd/contrib/elftoolchain/common/
H A D_elftc.h379 #define roundup2 roundup macro
425 #define roundup2 roundup macro
485 #define roundup2 roundup macro
/freebsd/sys/sys/
H A Dparam.h325 #define roundup2(x, y) __align_up(x, y) /* if y is powers of two */ macro
/freebsd/sys/netlink/
H A Dnetlink.h198 #define roundup2(x, y) (((x)+((y)-1))&(~((y)-1))) /* if y is powers of two */ macro
/freebsd/tests/atf_python/sys/net/
H A Drtsock.py21 def roundup2(val: int, num: int) -> int: function
/freebsd/contrib/tcpdump/
H A Dnetdissect.h116 #define roundup2(x, y) (((x)+((u_int)((y)-1)))&(~((u_int)((y)-1)))) macro