• Home
  • Raw
  • Download

Lines Matching refs:Address

39   UINTN                     Address;  in InternalGetMemoryMapAddress()  local
42 Address = MAP_PORT_BASE_TO_MEM (Port); in InternalGetMemoryMapAddress()
49 Address += IoBlockBaseAddress; in InternalGetMemoryMapAddress()
51 return Address; in InternalGetMemoryMapAddress()
271 IN UINTN Address in MmioRead8() argument
276 Address |= BIT63; in MmioRead8()
279 Data = *((volatile UINT8 *) Address); in MmioRead8()
303 IN UINTN Address in MmioRead16() argument
311 ASSERT ((Address & 1) == 0); in MmioRead16()
313 Address |= BIT63; in MmioRead16()
316 Data = *((volatile UINT16 *) Address); in MmioRead16()
340 IN UINTN Address in MmioRead32() argument
348 ASSERT ((Address & 3) == 0); in MmioRead32()
350 Address |= BIT63; in MmioRead32()
353 Data = *((volatile UINT32 *) Address); in MmioRead32()
377 IN UINTN Address in MmioRead64() argument
385 ASSERT ((Address & 7) == 0); in MmioRead64()
387 Address |= BIT63; in MmioRead64()
390 Data = *((volatile UINT64 *) Address); in MmioRead64()
415 IN UINTN Address, in MmioWrite8() argument
419 Address |= BIT63; in MmioWrite8()
422 *((volatile UINT8 *) Address) = Value; in MmioWrite8()
447 IN UINTN Address, in MmioWrite16() argument
454 ASSERT ((Address & 1) == 0); in MmioWrite16()
456 Address |= BIT63; in MmioWrite16()
459 *((volatile UINT16 *) Address) = Value; in MmioWrite16()
484 IN UINTN Address, in MmioWrite32() argument
491 ASSERT ((Address & 3) == 0); in MmioWrite32()
493 Address |= BIT63; in MmioWrite32()
496 *((volatile UINT32 *) Address) = Value; in MmioWrite32()
519 IN UINTN Address, in MmioWrite64() argument
526 ASSERT ((Address & 7) == 0); in MmioWrite64()
528 Address |= BIT63; in MmioWrite64()
531 *((volatile UINT64 *) Address) = Value; in MmioWrite64()