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

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/DxeMemoryAllocationLib/
MemoryAllocationLib.c 695 VOID *RawAddress;
715 OverAllocationSize = sizeof (RawAddress) + AlignmentMask;
722 RawAddress = InternalAllocatePool (PoolType, RealAllocationSize);
723 if (RawAddress == NULL) {
726 AlignedAddress = ((UINTN) RawAddress + OverAllocationSize) & ~AlignmentMask;
730 FreePointer = (VOID **)(AlignedAddress - sizeof (RawAddress));
731 *FreePointer = RawAddress;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/PeiMemoryAllocationLib/
MemoryAllocationLib.c 675 VOID *RawAddress;
694 RawAddress = InternalAllocatePool (PoolType, AllocationSize + AlignmentMask);
696 AlignedAddress = ((UINTN) RawAddress + AlignmentMask) & ~AlignmentMask;
724 VOID *RawAddress;
744 RawAddress = AllocatePool (AllocationSize + AlignmentMask);
746 AlignedAddress = ((UINTN) RawAddress + AlignmentMask) & ~AlignmentMask;
    [all...]
  /kernel/tests/net/test/
sock_diag.py 339 def RawAddress(addr):
347 padded = SockDiag.RawAddress(addr)
xfrm.py 221 def RawAddress(addr):
229 padded = RawAddress(addr)

Completed in 408 milliseconds