Symbol: ROUNDUP
usr/src/cmd/geniconvtbl/itmcomp.h
271
#define ROUNDUP(a, n) (((a) + ((n) - 1)) & ~((n) - 1))
usr/src/cmd/ndmpd/tlm/tlm_bitmap.c
116
#define ROUNDUP(n, d) (((n) + (d) - 1) / (d))
usr/src/cmd/rcap/rcapd/rcapd_collection_project.c
36
#define ROUNDUP(x, y) (((x) + ((y) - 1)) & ~((y) - 1))
usr/src/cmd/rcap/rcapd/rcapd_collection_zone.c
38
#define ROUNDUP(x, y) (((x) + ((y) - 1)) & ~((y) - 1))
usr/src/cmd/sgs/ar/common/inc.h
58
#define ROUNDUP(x) (((x) + 1) & ~1)
usr/src/cmd/sgs/mcs/common/mcs.h
57
#define ROUNDUP(x) (((x) + 1) & ~1)
usr/src/lib/libsqlite/src/btree.c
111
#define ROUNDUP(X) ((X+3) & ~3)
usr/src/lib/pkcs11/pkcs11_softtoken/common/softKeystore.h
65
#define ROUNDUP(x, y) roundup(x, y) /* defined in sys/sysmacros.h */
usr/src/uts/common/io/atge/atge.h
42
#define ROUNDUP(x, a) (((x) + (a) - 1) & ~((a) - 1))
usr/src/uts/common/io/hme/hme.h
275
#define ROUNDUP(a, n) (((a) + ((n) - 1)) & ~((n) - 1))
usr/src/uts/common/io/ib/ibtl/ibtl_hca.c
625
#define ROUNDUP(x, y) ((((x)+((y)-1))/(y))*(y))
usr/src/uts/common/io/qede/579xx/drivers/ecore/bcm_osal.h
527
#define ROUNDUP(x, y) ((((x) + ((y) - 1)) / (y)) * (y))
usr/src/uts/common/io/scsi/impl/scsi_hba.c
65
#define ROUNDUP(x) (((x) + 0x07) & ~0x07)
usr/src/uts/common/io/sfe/sfe_util.c
87
#define ROUNDUP(x, a) (((x) + (a) - 1) & ~((a) - 1))
usr/src/uts/common/io/usbgem/usbgem.c
92
#define ROUNDUP(x, a) (((x) + (a) - 1) & ~((a) - 1))
usr/src/uts/common/os/klpd.c
46
#define ROUNDUP(a, n) (((a) + ((n) - 1)) & ~((n) - 1))
usr/src/uts/common/sys/crypto/dca.h
760
#define ROUNDUP(a, n) (((a) + ((n) - 1)) & ~((n) - 1))
usr/src/uts/intel/io/amd8111s/amd8111s_main.c
60
#define ROUNDUP(x, a) (((x) + (a) - 1) & ~((a) - 1))
usr/src/uts/intel/io/dktp/hba/ghd/ghd_gcmd.c
34
#define ROUNDUP(x) (((x) + 0x07) & ~0x07)
usr/src/uts/intel/io/dktp/hba/ghd/ghd_scsa.c
43
#define ROUNDUP(x) (((x) + 0x07) & ~0x07)
usr/src/uts/sun/io/dada/impl/dcd_hba.c
304
#define ROUNDUP(x) (((x) + 0x07) & ~0x07)
usr/src/uts/sun/io/eri/eri.h
681
#define ROUNDUP(a, n) (((a) + ((n) - 1)) & ~((n) - 1))
usr/src/uts/sun4/sys/trapstat.h
201
#define ROUNDUP(a, n) (((a) + ((n) - 1)) & ~((n) - 1))
usr/src/uts/sun4v/io/n2rng/n2rng_provider.c
48
#define ROUNDUP(k, n) (((k) + (n) - 1) & ~((n) - 1))