Lines Matching refs:Uint8Buffer
239 UINT8 *Uint8Buffer; in CpuMemoryServiceRead() local
252 for (Uint8Buffer = Buffer; Count > 0; Address += InStride, Uint8Buffer += OutStride, Count--) { in CpuMemoryServiceRead()
254 *Uint8Buffer = MmioRead8 ((UINTN)Address); in CpuMemoryServiceRead()
256 *((UINT16 *)Uint8Buffer) = MmioRead16 ((UINTN)Address); in CpuMemoryServiceRead()
258 *((UINT32 *)Uint8Buffer) = MmioRead32 ((UINTN)Address); in CpuMemoryServiceRead()
260 *((UINT64 *)Uint8Buffer) = MmioRead64 ((UINTN)Address); in CpuMemoryServiceRead()
320 UINT8 *Uint8Buffer; in CpuMemoryServiceWrite() local
333 for (Uint8Buffer = Buffer; Count > 0; Address += InStride, Uint8Buffer += OutStride, Count--) { in CpuMemoryServiceWrite()
335 MmioWrite8 ((UINTN)Address, *Uint8Buffer); in CpuMemoryServiceWrite()
337 MmioWrite16 ((UINTN)Address, *((UINT16 *)Uint8Buffer)); in CpuMemoryServiceWrite()
339 MmioWrite32 ((UINTN)Address, *((UINT32 *)Uint8Buffer)); in CpuMemoryServiceWrite()
341 MmioWrite64 ((UINTN)Address, *((UINT64 *)Uint8Buffer)); in CpuMemoryServiceWrite()
401 UINT8 *Uint8Buffer; in CpuIoServiceRead() local
417 for (Uint8Buffer = Buffer; Count > 0; Address += InStride, Uint8Buffer += OutStride, Count--) { in CpuIoServiceRead()
419 *Uint8Buffer = MmioRead8 ((UINTN)Address); in CpuIoServiceRead()
421 *((UINT16 *)Uint8Buffer) = MmioRead16 ((UINTN)Address); in CpuIoServiceRead()
423 *((UINT32 *)Uint8Buffer) = MmioRead32 ((UINTN)Address); in CpuIoServiceRead()
484 UINT8 *Uint8Buffer; in CpuIoServiceWrite() local
503 …for (Uint8Buffer = (UINT8 *)Buffer; Count > 0; Address += InStride, Uint8Buffer += OutStride, Coun… in CpuIoServiceWrite()
505 MmioWrite8 ((UINTN)Address, *Uint8Buffer); in CpuIoServiceWrite()
507 MmioWrite16 ((UINTN)Address, *((UINT16 *)Uint8Buffer)); in CpuIoServiceWrite()
509 MmioWrite32 ((UINTN)Address, *((UINT32 *)Uint8Buffer)); in CpuIoServiceWrite()