Home
last modified time | relevance | path

Searched defs:ALIGN_DOWN (Results 1 – 10 of 10) sorted by relevance

/aosp_15_r20/system/core/libsparse/
H A Dsparse_defs.h44 #define ALIGN_DOWN(x, y) ((y) * ((x) / (y))) macro
/aosp_15_r20/external/ltp/testcases/kernel/syscalls/ipc/shmat/
H A Dshmat01.c31 #define ALIGN_DOWN(in_addr) ((void *)(((uintptr_t)in_addr / SHMLBA) * SHMLBA)) macro
/aosp_15_r20/external/python/cpython2/Modules/_ctypes/libffi/include/
Dffi_common.h78 #define ALIGN_DOWN(v, a) (((size_t) (v)) & -a) macro
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/vm/
H A Dpkey-helpers.h181 #define ALIGN_DOWN(x, align_to) ((x) & ~((align_to)-1)) macro
/aosp_15_r20/hardware/google/gchips/include/
Dexynos_format.h171 #define ALIGN_DOWN(x, a) ((x) - (x % a)) macro
/aosp_15_r20/external/coreboot/src/commonlib/bsd/include/commonlib/bsd/
H A Dhelpers.h18 #define ALIGN_DOWN(x, a) ((x) & ~((__typeof__(x))(a)-1UL)) macro
/aosp_15_r20/external/mesa3d/src/intel/isl/
H A Disl_tiled_memcpy.c47 #define ALIGN_DOWN(a, b) ROUND_DOWN_TO(a, b) macro
/aosp_15_r20/external/flashrom/include/
H A Dflash.h45 #define ALIGN_DOWN(n, a) ((n) & ~((uint64_t)(a) - 1)) macro
/aosp_15_r20/external/f2fs-tools/include/
H A Df2fs_fs.h517 #define ALIGN_DOWN(addrs, size) (((addrs) / (size)) * (size)) macro
/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
Dwdm.h10508 #define ALIGN_DOWN(size, type) \ macro