Searched defs:rounddown (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/lib/libcmd/common/
H A Drevlib.c30 #define rounddown(n,size) (((n)-1)&~((size)-1)) macro
56 offset = rounddown(offset,BUFSIZE);
/illumos-gate/usr/src/boot/sys/sys/
H A Dparam.h294 #define rounddown(x, y) (((x)/(y))*(y)) macro
/illumos-gate/usr/src/uts/common/fs/dcfs/
H A Ddc_vnops.c120 #define rounddown(x, y) ((x) & ~((y) - 1)) macro
566 vp_boff = rounddown(off, bsize);
568 vp_baddr = (caddr_t)rounddown((uintptr_t)addr, bsize);
/illumos-gate/usr/src/uts/sun4u/opl/sys/
H A Ddrmach.h105 #define rounddown(x, y) ((x) & ~(y - 1)) macro
/illumos-gate/usr/src/head/
H A Dmeta.h81 #ifndef rounddown
82 #define rounddown(x, y) (((x) / (y)) * (y)) macro

Completed in 83 milliseconds