taglinefilesource code
ROUND_UP54arch/alpha/kernel/osf_sys.c#define ROUND_UP(x) (((x)+7) & ~7)
ROUND_UP25fs/readdir.c#define ROUND_UP(x) (((x)+sizeof(long)-1) & ~(sizeof(long)-1))
ROUND_UP28fs/select.c#define ROUND_UP(x,y) (((x)+(y)-1)/(y))
ROUND_UP40fs/umsdos/dir.c#define ROUND_UP(x) (((x)+3) & ~3)