Home
last modified time | relevance | path

Searched defs:ROUND_UP (Results 1 – 13 of 13) sorted by relevance

/netbsd-src/external/mit/libuv/dist/src/unix/
H A Dinternal.h93 #define ROUND_UP(a, b) \ macro
/netbsd-src/regress/lib/libc/ieeefp/testfloat/include/
H A DtestFunction.h162 ROUND_UP, enumerator
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dsystem.h405 #define ROUND_UP(x,y) (((x) + (y) - 1) & ~((y) - 1)) macro
/netbsd-src/external/gpl2/mkhybrid/dist/
H A Dmkisofs.h477 #define ROUND_UP(X) ((X + (SECTOR_SIZE - 1)) & ~(SECTOR_SIZE - 1)) macro
/netbsd-src/external/gpl3/binutils/dist/ld/
H A Ddeffilep.y33 #define ROUND_UP(a, b) (((a)+((b)-1))&~((b)-1)) macro
H A Ddeffilep.c103 #define ROUND_UP(a, b) (((a)+((b)-1))&~((b)-1)) macro
/netbsd-src/external/gpl3/binutils.old/dist/ld/
H A Ddeffilep.y33 #define ROUND_UP(a, b) (((a)+((b)-1))&~((b)-1)) macro
H A Ddeffilep.c103 #define ROUND_UP(a, b) (((a)+((b)-1))&~((b)-1)) macro
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dsystem.h396 #define ROUND_UP(x,y) (((x) + (y) - 1) & ~((y) - 1)) macro
/netbsd-src/lib/libc/softfloat/
H A Dtimesoftfloat.c2042 ROUND_UP, enumerator
/netbsd-src/external/gpl3/gcc/dist/libgfortran/io/
H A Dio.h263 { ROUND_UP = GFC_FPE_UPWARD, enumerator
/netbsd-src/external/gpl3/gcc.old/dist/libgfortran/io/
H A Dio.h259 { ROUND_UP = GFC_FPE_UPWARD, enumerator
/netbsd-src/external/mit/expat/dist/lib/
H A Dxmlparse.c192 #define ROUND_UP(n, sz) (((n) + ((sz)-1)) & ~((sz)-1)) macro