Searched defs:IS_ALIGNED (Results 1 – 7 of 7) sorted by relevance
28 #define IS_ALIGNED(Address, Align) (((UINTN)Address & (Align-1)) == 0) macro
20 #define IS_ALIGNED(Address, Align) (((UINTN)Address & (Align-1)) == 0) macro
132 #define IS_ALIGNED(addr, size) (((UINTN) (addr) & (size - 1)) == 0) macro
151 #define IS_ALIGNED(addr, size) (((UINTN) (addr) & (size - 1)) == 0) macro
85 #define IS_ALIGNED(addr, size) (((UINTN) (addr) & (size - 1)) == 0) macro
114 #define IS_ALIGNED(addr, size) (((UINTN) (addr) & (size - 1)) == 0) macro
30 #define IS_ALIGNED(addr, size) !((UINT32) (addr) & (size - 1)) macro