HomeSort by relevance Sort by last modified time
    Searched defs:IS_ALIGNED (Results 1 - 15 of 15) sorted by null

  /device/linaro/bootloader/edk2/ArmPlatformPkg/Library/ArmTrustedMonitorLibNull/Arm/
ArmTrustedMonitorLibNull.c 20 #define IS_ALIGNED(Address, Align) (((UINTN)Address & (Align-1)) == 0)
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/
EbcExecute.h 24 #define IS_ALIGNED(addr, size) !((UINT32) (addr) & (size - 1))
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
uastrfnc.h 20 #define IS_ALIGNED(p) (((ULONG_PTR)(p) & (sizeof(*(p))-1))==0)
rtinfo.h 17 #define IS_ALIGNED(ptr) (((UINT_PTR)(ptr) & ALIGN_SHIFT)==0x00000000)
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/
AtaAtapiPassThru.h 151 #define IS_ALIGNED(addr, size) (((UINTN) (addr) & (size - 1)) == 0)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ata/AtaBusDxe/
AtaBus.h 85 #define IS_ALIGNED(addr, size) (((UINTN) (addr) & (size - 1)) == 0)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ufs/UfsBlockIoPei/
UfsBlockIoPei.h 132 #define IS_ALIGNED(addr, size) (((UINTN) (addr) & (size - 1)) == 0)
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ufs/UfsPassThruDxe/
UfsPassThru.h 115 #define IS_ALIGNED(addr, size) (((UINTN) (addr) & (size - 1)) == 0)
    [all...]
  /external/libjpeg-turbo/simd/
jsimd_i386.c 29 #define IS_ALIGNED(ptr, order) (((unsigned)ptr & ((1 << order) - 1)) == 0)
31 #define IS_ALIGNED_SSE(ptr) (IS_ALIGNED(ptr, 4)) /* 16 byte alignment */
jsimd_x86_64.c 29 #define IS_ALIGNED(ptr, order) (((size_t)ptr & ((1 << order) - 1)) == 0)
31 #define IS_ALIGNED_SSE(ptr) (IS_ALIGNED(ptr, 4)) /* 16 byte alignment */
  /system/core/storaged/include/
storaged.h 39 #define IS_ALIGNED(x, align) (!((x) & ((align) - 1)))
  /external/e2fsprogs/lib/ext2fs/
unix_io.c 106 #define IS_ALIGNED(n, align) ((((uintptr_t) n) & \
146 (IS_ALIGNED(buf, channel->align) &&
147 IS_ALIGNED(size, channel->align))) {
156 (IS_ALIGNED(buf, channel->align) &&
157 IS_ALIGNED(size, channel->align)))) {
169 (IS_ALIGNED(buf, channel->align) &&
170 IS_ALIGNED(size, channel->align))) {
238 (IS_ALIGNED(buf, channel->align) &&
239 IS_ALIGNED(size, channel->align))) {
248 (IS_ALIGNED(buf, channel->align) &
    [all...]
  /external/valgrind/drd/
drd_pthread_intercepts.c 352 #define IS_ALIGNED(p) (((uintptr_t)(p) & (sizeof(*(p)) - 1)) == 0)
371 if (IS_ALIGNED(&mutex->__m_kind))
378 if (IS_ALIGNED(&mutex->__data.__kind))
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/include/libyuv/
row.h 23 #define IS_ALIGNED(p, a) (!((uintptr_t)(p) & ((a) - 1)))
    [all...]
  /external/libyuv/files/include/libyuv/
row.h 23 #define IS_ALIGNED(p, a) (!((uintptr_t)(p) & ((a)-1)))
    [all...]

Completed in 716 milliseconds