Home
last modified time | relevance | path

Searched defs:ALIGN_UP (Results 1 – 25 of 153) sorted by relevance

1234567

/dports/lang/mono/mono-5.10.1.57/external/corert/src/Native/jitinterface/
H A Dcommon.h51 inline size_t ALIGN_UP(size_t val, size_t alignment) in ALIGN_UP() function
59 inline void* ALIGN_UP(void* val, size_t alignment) in ALIGN_UP() function
101 inline DWORD ALIGN_UP(DWORD val, int alignment) in ALIGN_UP() function
/dports/lang/mono/mono-5.10.1.57/external/corert/src/Native/Runtime/
H A DCommonMacros.inl5 inline UIntNative ALIGN_UP( UIntNative val, UIntNative alignment ) function
16 inline T* ALIGN_UP(T* val, UIntNative alignment) function
/dports/graphics/waifu2x-converter-cpp/waifu2x-converter-cpp-5.3.4/src/
H A Dcommon.hpp32 #define ALIGN_UP(v,a) (((v+(a-1))/(a))*(a)) macro
/dports/games/retroarch/RetroArch-1.9.7/gfx/include/userland/vcinclude/
H A Dcommon.h60 #define ALIGN_UP(p, n) ALIGN_DOWN((uint32_t)(p) + (uint32_t)(n) - 1, (n)) macro
100 #define ALIGN_UP(p, n) ALIGN_DOWN((uintptr_t)(p) + (uintptr_t)(n) - 1, (n)) macro
/dports/sysutils/rpi-firmware/firmware-fcf8d2f/hardfp/opt/vc/include/vcinclude/
H A Dcommon.h60 #define ALIGN_UP(p, n) ALIGN_DOWN((uint32_t)(p) + (uint32_t)(n) - 1, (n)) macro
103 #define ALIGN_UP(p, n) ALIGN_DOWN((uintptr_t)(p) + (uintptr_t)(n) - 1, (n)) macro
/dports/sysutils/rpi-firmware/firmware-fcf8d2f/opt/vc/include/vcinclude/
H A Dcommon.h60 #define ALIGN_UP(p, n) ALIGN_DOWN((uint32_t)(p) + (uint32_t)(n) - 1, (n)) macro
103 #define ALIGN_UP(p, n) ALIGN_DOWN((uintptr_t)(p) + (uintptr_t)(n) - 1, (n)) macro
/dports/devel/liboil/liboil-0.3.17/liboil/powerpc/
H A Dresample.c39 #define ALIGN_UP(ptr,boundary) ((void *)(((unsigned long)ptr + boundary-1) & (~(boundary-1)))) macro
/dports/sysutils/atf-sun50i_h6/arm-trusted-firmware-2.5/include/plat/marvell/armada/common/
H A Dmvebu.h19 #define ALIGN_UP(number, align) (((number) & ((align) - 1)) ? \ macro
/dports/sysutils/atf-sun50i_a64/arm-trusted-firmware-2.5/include/plat/marvell/armada/common/
H A Dmvebu.h19 #define ALIGN_UP(number, align) (((number) & ((align) - 1)) ? \ macro
/dports/sysutils/atf-rk3399/arm-trusted-firmware-2.5/include/plat/marvell/armada/common/
H A Dmvebu.h19 #define ALIGN_UP(number, align) (((number) & ((align) - 1)) ? \ macro
/dports/sysutils/atf-rk3328/arm-trusted-firmware-2.5/include/plat/marvell/armada/common/
H A Dmvebu.h19 #define ALIGN_UP(number, align) (((number) & ((align) - 1)) ? \ macro
/dports/sysutils/atf-fvp/arm-trusted-firmware-2.5/include/plat/marvell/armada/common/
H A Dmvebu.h19 #define ALIGN_UP(number, align) (((number) & ((align) - 1)) ? \ macro
/dports/emulators/qemu-powernv/qemu-powernv-3.0.50/roms/skiboot/libflash/
H A Decc.h41 #define ALIGN_UP(_v, _a) (((_v) + (_a) - 1) & ~((_a) - 1)) macro
/dports/sysutils/syslinux/syslinux-6.03/com32/include/syslinux/
H A Dalign.h43 #define ALIGN_UP(p,a) ((__typeof__(p))__align_up((uintptr_t)(p), (a))) macro
/dports/lang/sbcl/sbcl-1.3.13/src/runtime/
H A Dcpputil.h6 #define ALIGN_UP(value,granularity) (((value)+(granularity-1))&(~(granularity-1))) macro
/dports/sysutils/syslinux/syslinux-6.03/dos/
H A Dargv.c41 #define ALIGN_UP(p,t) ((t *)(((uintptr_t)(p) + (sizeof(t)-1)) & ~(sizeof(t)-1))) macro
/dports/emulators/qemu42/qemu-4.2.1/roms/skiboot/libflash/
H A Decc.h45 #define ALIGN_UP(_v, _a) (((_v) + (_a) - 1) & ~((_a) - 1)) macro
/dports/emulators/qemu5/qemu-5.2.0/roms/skiboot/libflash/
H A Decc.h45 #define ALIGN_UP(_v, _a) (((_v) + (_a) - 1) & ~((_a) - 1)) macro
/dports/emulators/qemu-utils/qemu-4.2.1/roms/skiboot/libflash/
H A Decc.h45 #define ALIGN_UP(_v, _a) (((_v) + (_a) - 1) & ~((_a) - 1)) macro
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/skiboot/libflash/
H A Decc.h45 #define ALIGN_UP(_v, _a) (((_v) + (_a) - 1) & ~((_a) - 1)) macro
/dports/emulators/qemu/qemu-6.2.0/roms/skiboot/libflash/
H A Decc.h34 #define ALIGN_UP(_v, _a) (((_v) + (_a) - 1) & ~((_a) - 1)) macro
/dports/emulators/qemu60/qemu-6.0.0/roms/skiboot/libflash/
H A Decc.h45 #define ALIGN_UP(_v, _a) (((_v) + (_a) - 1) & ~((_a) - 1)) macro
/dports/archivers/upx/upx-3.96/src/
H A Dbele.h487 inline unsigned ALIGN_UP (unsigned a, const BE32& b) { return ALIGN_UP (a, (unsigned) b); } in ALIGN_UP() function
488 inline unsigned ALIGN_UP (const BE32& a, unsigned b) { return ALIGN_UP ((unsigned) a, b); } in ALIGN_UP() function
492 inline unsigned ALIGN_UP (unsigned a, const LE32& b) { return ALIGN_UP (a, (unsigned) b); } in ALIGN_UP() function
493 inline unsigned ALIGN_UP (const LE32& a, unsigned b) { return ALIGN_UP ((unsigned) a, b); } in ALIGN_UP() function
/dports/lang/zig-devel/zig-0.9.0/lib/libc/glibc/include/
H A Dlibc-pointer-arith.h53 #define ALIGN_UP(base, size) ALIGN_DOWN ((base) + (size) - 1, (size)) macro
/dports/lang/zig/zig-0.9.0/lib/libc/glibc/include/
H A Dlibc-pointer-arith.h53 #define ALIGN_UP(base, size) ALIGN_DOWN ((base) + (size) - 1, (size)) macro

1234567