Home
last modified time | relevance | path

Searched defs:ROUNDUP (Results 1 – 7 of 7) sorted by relevance

/external/u-boot/include/
Dimage-sparse.h9 #define ROUNDUP(x, y) (((x) + ((y) - 1)) & ~((y) - 1)) macro
/external/strace/
Dmacros.h52 # define ROUNDUP(val_, div_) ((((val_) + (div_) - 1) / (div_)) * (div_)) macro
/external/python/cpython2/Python/
Dpyarena.c17 #define ROUNDUP(x) (((x) + ALIGNMENT_MASK) & ~ALIGNMENT_MASK) macro
/external/openssh/
Dmisc.h148 #define ROUNDUP(x, y) ((((x)+((y)-1))/(y))*(y)) macro
/external/libxkbcommon/xkbcommon/src/
Dutils.h195 #define ROUNDUP(a, b) (((a) + (b) - 1) / (b) * (b)) macro
/external/icu/icu4c/source/i18n/
DdecNumberLocal.h110 #define ROUNDUP(i, n) ((((i)+(n)-1)/n)*n) macro
/external/python/cpython2/Objects/
Dobmalloc.c336 #define ROUNDUP(x) (((x) + ALIGNMENT_MASK) & ~ALIGNMENT_MASK) macro