Searched defs:ROUNDUP (Results 1 – 10 of 10) sorted by relevance
/plan9/sys/src/9/pcboot/ |
H A D | expand.h | 5 #define ROUNDUP(x, y) (HOWMANY((x), (y))*(y)) /* ceiling */ macro
|
/plan9/sys/src/libframe/ |
H A D | frstr.c | 9 #define ROUNDUP(n) ((n+CHUNK)&~(CHUNK-1)) macro
|
/plan9/sys/src/cmd/venti/srv/ |
H A D | zblock.c | 17 #define ROUNDUP(p, n) ((void*)(((uintptr)(p)+(n)-1)&~(uintptr)((n)-1))) macro
|
H A D | fixarenas.c | 18 #define ROUNDUP(x,n) (((x)+(n)-1)&~((n)-1)) macro
|
/plan9/sys/src/cmd/9nfs/ |
H A D | rpc.h | 76 #define ROUNDUP(n) ((n) + ((-(n))&3)) macro
|
/plan9/sys/src/cmd/tarsplit/ |
H A D | tar.h | 8 #define ROUNDUP(a, size) (HOWMANY(a, size) * (size)) macro
|
/plan9/sys/src/cmd/ |
H A D | du.c | 20 #define ROUNDUP(amt, unit) (HOWMANY(amt, unit) * (unit)) macro
|
/plan9/sys/src/ape/cmd/pax/ |
H A D | pax.h | 220 #define ROUNDUP(a,b) (((a) % (b)) == 0 ? (a) : ((a) + ((b) - ((a) % (b))))) macro
|
/plan9/sys/src/cmd/cwfs/ |
H A D | portdat.h | 21 #define ROUNDUP(x, y) (HOWMANY((x), (y)) * (y)) macro
|
/plan9/sys/src/9/port/ |
H A D | portdat.h | 64 #define ROUNDUP(x, y) (HOWMANY((x), (y))*(y)) /* ceiling */ macro
|