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

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rtinfo.h 15 #define ALIGN_POINTER(ptr) { (ptr) = (PVOID)((DWORD_PTR)(ptr) + ALIGN_SHIFT); (ptr) = (PVOID)((DWORD_PTR)(ptr) & ALIGN_MASK_POINTER); }
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Include/Common/
BaseTypes.h 137 /// ALIGN_POINTER - aligns a pointer to the lowest boundary
139 #define ALIGN_POINTER(p, s) ((VOID *) ((UINTN)(p) + (((s) - ((UINTN) (p))) & ((s) - 1))))
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Include/
EfiTypes.h 265 // ALIGN_POINTER - aligns a pointer to the lowest boundary
267 #define ALIGN_POINTER(p, s) ((VOID *) (p + ((s - ((UINTN) p)) & (s - 1))))
  /external/syslinux/gpxe/src/include/gpxe/efi/
Base.h 204 /// ALIGN_POINTER - aligns a pointer to the lowest boundry
206 #define ALIGN_POINTER(Pointer, Alignment) ((VOID *) (ALIGN_VALUE ((UINTN)(Pointer), (Alignment))))
  /device/linaro/bootloader/edk2/MdePkg/Include/
Base.h 838 #define ALIGN_POINTER(Pointer, Alignment) ((VOID *) (ALIGN_VALUE ((UINTN)(Pointer), (Alignment))))
    [all...]

Completed in 286 milliseconds