Searched refs:AlignmentMask (Results 1 - 12 of 12) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/Misc/
H A DDebugImageInfo.c45 UINTN AlignmentMask; local
55 AlignmentMask = SIZE_4MB - 1;
97 AlignedMemory = ((UINTN) Memory + AlignmentMask) & ~AlignmentMask;
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/PeiMemoryAllocationLib/
H A DMemoryAllocationLib.c181 UINTN AlignmentMask; local
200 AlignmentMask = Alignment;
202 AlignmentMask = Alignment - 1;
204 return (VOID *) (UINTN) (((UINTN) Memory + AlignmentMask) & ~AlignmentMask);
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/DxeCoreMemoryAllocationLib/
H A DMemoryAllocationLib.c182 UINTN AlignmentMask; local
198 AlignmentMask = Alignment - 1;
209 AlignedMemory = ((UINTN) Memory + AlignmentMask) & ~AlignmentMask;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/PiSmmCoreMemoryAllocationLib/
H A DMemoryAllocationLib.c273 UINTN AlignmentMask; local
289 AlignmentMask = Alignment - 1;
300 AlignedMemory = ((UINTN) Memory + AlignmentMask) & ~AlignmentMask;
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/SmmMemoryAllocationLib/
H A DMemoryAllocationLib.c308 UINTN AlignmentMask; local
324 AlignmentMask = Alignment - 1;
335 AlignedMemory = ((UINTN) Memory + AlignmentMask) & ~AlignmentMask;
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiMemoryAllocationLib/
H A DMemoryAllocationLib.c182 UINTN AlignmentMask; local
198 AlignmentMask = Alignment - 1;
209 AlignedMemory = ((UINTN) Memory + AlignmentMask) & ~AlignmentMask;
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dntddscsi.h102 ULONG AlignmentMask; member in struct:_IO_SCSI_CAPABILITIES
H A Dntddstor.h274 ULONG AlignmentMask; member in struct:_STORAGE_ADAPTER_DESCRIPTOR
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dntddscsi.h100 ULONG AlignmentMask; member in struct:_IO_SCSI_CAPABILITIES
H A Dntddstor.h265 ULONG AlignmentMask; member in struct:_STORAGE_ADAPTER_DESCRIPTOR
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/Gcd/
H A DGcd.c313 UINT64 AlignmentMask; local
315 AlignmentMask = LShiftU64 (1, Alignment) - 1;
317 Value += AlignmentMask;
319 return Value & (~AlignmentMask);
1000 EFI_PHYSICAL_ADDRESS AlignmentMask; local
1061 AlignmentMask = LShiftU64 (1, Alignment) - 1;
1067 if ((*BaseAddress & AlignmentMask) != 0) {
1147 *BaseAddress = (*BaseAddress + 1 - Length) & (~AlignmentMask);
1149 *BaseAddress = (Entry->BaseAddress + AlignmentMask) & (~AlignmentMask);
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Eot/
H A DFvImage.py933 AlignmentMask = Alignment - 1
936 if (PayloadOffset & (~AlignmentMask)) == 0:
938 NewOffset = (PayloadOffset + AlignmentMask) & (~AlignmentMask)

Completed in 71 milliseconds