• Home
  • Raw
  • Download

Lines Matching refs:Uint8Buffer

241   UINT8                      *Uint8Buffer;  in CpuMemoryServiceRead()  local
254 for (Uint8Buffer = Buffer; Count > 0; Address += InStride, Uint8Buffer += OutStride, Count--) { in CpuMemoryServiceRead()
256 *Uint8Buffer = MmioRead8 ((UINTN)Address); in CpuMemoryServiceRead()
258 *((UINT16 *)Uint8Buffer) = MmioRead16 ((UINTN)Address); in CpuMemoryServiceRead()
260 *((UINT32 *)Uint8Buffer) = MmioRead32 ((UINTN)Address); in CpuMemoryServiceRead()
262 *((UINT64 *)Uint8Buffer) = MmioRead64 ((UINTN)Address); in CpuMemoryServiceRead()
321 UINT8 *Uint8Buffer; in CpuMemoryServiceWrite() local
334 for (Uint8Buffer = Buffer; Count > 0; Address += InStride, Uint8Buffer += OutStride, Count--) { in CpuMemoryServiceWrite()
336 MmioWrite8 ((UINTN)Address, *Uint8Buffer); in CpuMemoryServiceWrite()
338 MmioWrite16 ((UINTN)Address, *((UINT16 *)Uint8Buffer)); in CpuMemoryServiceWrite()
340 MmioWrite32 ((UINTN)Address, *((UINT32 *)Uint8Buffer)); in CpuMemoryServiceWrite()
342 MmioWrite64 ((UINTN)Address, *((UINT64 *)Uint8Buffer)); in CpuMemoryServiceWrite()
401 UINT8 *Uint8Buffer; in CpuIoServiceRead() local
438 for (Uint8Buffer = Buffer; Count > 0; Address += InStride, Uint8Buffer += OutStride, Count--) { in CpuIoServiceRead()
440 *Uint8Buffer = IoRead8 ((UINTN)Address); in CpuIoServiceRead()
442 *((UINT16 *)Uint8Buffer) = IoRead16 ((UINTN)Address); in CpuIoServiceRead()
444 *((UINT32 *)Uint8Buffer) = IoRead32 ((UINTN)Address); in CpuIoServiceRead()
504 UINT8 *Uint8Buffer; in CpuIoServiceWrite() local
544 …for (Uint8Buffer = (UINT8 *)Buffer; Count > 0; Address += InStride, Uint8Buffer += OutStride, Coun… in CpuIoServiceWrite()
546 IoWrite8 ((UINTN)Address, *Uint8Buffer); in CpuIoServiceWrite()
548 IoWrite16 ((UINTN)Address, *((UINT16 *)Uint8Buffer)); in CpuIoServiceWrite()
550 IoWrite32 ((UINTN)Address, *((UINT32 *)Uint8Buffer)); in CpuIoServiceWrite()