Lines Matching refs:Uint8Buffer
899 UINT8 *Uint8Buffer;
909 for (Uint8Buffer = Buffer; Count > 0; Address += InStride, Uint8Buffer += OutStride, Count--) {
913 MmioWrite8 ((UINTN)Address, *Uint8Buffer);
916 MmioWrite16 ((UINTN)Address, *((UINT16 *)Uint8Buffer));
919 MmioWrite32 ((UINTN)Address, *((UINT32 *)Uint8Buffer));
922 MmioWrite64 ((UINTN)Address, *((UINT64 *)Uint8Buffer));
935 *Uint8Buffer = MmioRead8 ((UINTN)Address);
938 *((UINT16 *)Uint8Buffer) = MmioRead16 ((UINTN)Address);
941 *((UINT32 *)Uint8Buffer) = MmioRead32 ((UINTN)Address);
944 *((UINT64 *)Uint8Buffer) = MmioRead64 ((UINTN)Address);
991 UINT8 *Uint8Buffer;
1030 for (Uint8Buffer = Buffer; Count > 0; Address += InStride, Uint8Buffer += OutStride, Count--) {
1034 IoWrite8 ((UINTN)Address, *Uint8Buffer);
1037 IoWrite16 ((UINTN)Address, *((UINT16 *)Uint8Buffer));
1040 IoWrite32 ((UINTN)Address, *((UINT32 *)Uint8Buffer));
1053 *Uint8Buffer = IoRead8 ((UINTN)Address);
1056 *((UINT16 *)Uint8Buffer) = IoRead16 ((UINTN)Address);
1059 *((UINT32 *)Uint8Buffer) = IoRead32 ((UINTN)Address);
1109 UINT8 *Uint8Buffer;
1132 for (Uint8Buffer = Buffer; Count > 0; PcieRegAddr += InStride, Uint8Buffer += OutStride, Count--) {
1136 PciWrite8 (PcieRegAddr, *Uint8Buffer);
1139 PciWrite16 (PcieRegAddr, *((UINT16 *)Uint8Buffer));
1142 PciWrite32 (PcieRegAddr, *((UINT32 *)Uint8Buffer));
1155 *Uint8Buffer = PciRead8 (PcieRegAddr);
1158 *((UINT16 *)Uint8Buffer) = PciRead16 (PcieRegAddr);
1161 *((UINT32 *)Uint8Buffer) = PciRead32 (PcieRegAddr);