Home | History | Annotate | Download | only in CpuRuntimeDxe

Lines Matching defs:Address

41   IN  UINT64                            Address,

52 IN UINT64 Address,
66 Address of the Memory access
79 EFI_UNSUPPORTED - The address range specified by Address, Width,
90 Status = CpuIoCheckAddressRange (Width, Address, Count, Buffer, IA32_MAX_MEM_ADDRESS);
106 IN UINT64 Address,
120 Address of the Memory access
132 EFI_UNSUPPORTED - The address range specified by Address, Width, and
143 Status = CpuIoCheckAddressRange (Width, Address, Count, Buffer, IA32_MAX_MEM_ADDRESS);
173 Address of the I/O access
184 EFI_UNSUPPORTED - The address range specified by Address, Width, and
188 UINTN Address;
195 Address = (UINTN) UserAddress;
201 Status = CpuIoCheckAddressRange (Width, Address, Count, UserBuffer, IA32_MAX_IO_ADDRESS);
232 Address of the I/O access
245 EFI_UNSUPPORTED - The address range specified by Address, Width, and
250 UINTN Address;
257 Address = (UINTN) UserAddress;
263 Status = CpuIoCheckAddressRange (Width, Address, Count, UserBuffer, IA32_MAX_IO_ADDRESS);
282 Address - TODO: add argument description
298 IN UINT64 Address,
306 if (Address > Limit) {
311 // For FiFo type, the target address won't increase during the access, so treat count as 1
318 if ((Address - 1 + LShiftU64 (Count, Width)) > Limit) {