Home
last modified time | relevance | path

Searched refs:Width (Results 1 – 25 of 281) sorted by relevance

12345678910>>...12

/device/linaro/bootloader/edk2/Nt32Pkg/CpuRuntimeDxe/
DCpuIo.c33 IN EFI_CPU_IO_PROTOCOL_WIDTH Width,
44 IN EFI_CPU_IO_PROTOCOL_WIDTH Width, in CpuMemoryServiceRead() argument
84 if ((Width < 0) || (Width >= EfiCpuIoWidthMaximum)) { in CpuMemoryServiceRead()
88 Status = CpuIoCheckAddressRange (Width, Address, Count, Buffer, IA32_MAX_MEM_ADDRESS); in CpuMemoryServiceRead()
103 IN EFI_CPU_IO_PROTOCOL_WIDTH Width, in CpuMemoryServiceWrite() argument
142 if ((Width < 0) || (Width >= EfiCpuIoWidthMaximum)) { in CpuMemoryServiceWrite()
146 Status = CpuIoCheckAddressRange (Width, Address, Count, Buffer, IA32_MAX_MEM_ADDRESS); in CpuMemoryServiceWrite()
161 IN EFI_CPU_IO_PROTOCOL_WIDTH Width, in CpuIoServiceRead() argument
203 if ((Width < 0) || (Width >= EfiCpuIoWidthMaximum)) { in CpuIoServiceRead()
207 Status = CpuIoCheckAddressRange (Width, Address, Count, UserBuffer, IA32_MAX_IO_ADDRESS); in CpuIoServiceRead()
[all …]
/device/linaro/bootloader/edk2/UefiCpuPkg/CpuIo2Smm/
DCpuIo2Smm.c66 IN EFI_SMM_IO_WIDTH Width, in CpuIoCheckParameter() argument
85 if ((UINT32)Width > SMM_IO_UINT64) { in CpuIoCheckParameter()
92 if (!MmioOperation && (Width == SMM_IO_UINT64)) { in CpuIoCheckParameter()
117 MaxCount = RShiftU64 (Limit, Width); in CpuIoCheckParameter()
121 if (Address > LShiftU64 (MaxCount - Count + 1, Width)) { in CpuIoCheckParameter()
129 if ((Address & (UINT64)(mStride[Width] - 1)) != 0) { in CpuIoCheckParameter()
163 IN EFI_SMM_IO_WIDTH Width, in CpuMemoryServiceRead() argument
173 Status = CpuIoCheckParameter (TRUE, Width, Address, Count, Buffer); in CpuMemoryServiceRead()
181 Stride = mStride[Width]; in CpuMemoryServiceRead()
183 if (Width == SMM_IO_UINT8) { in CpuMemoryServiceRead()
[all …]
/device/linaro/bootloader/edk2/UefiCpuPkg/CpuIo2Dxe/
DCpuIo2Dxe.c100 IN EFI_CPU_IO_PROTOCOL_WIDTH Width, in CpuIoCheckParameter() argument
119 if ((UINT32)Width >= EfiCpuIoWidthMaximum) { in CpuIoCheckParameter()
127 if (Width >= EfiCpuIoWidthFifoUint8 && Width <= EfiCpuIoWidthFifoUint64) { in CpuIoCheckParameter()
134 Width = (EFI_CPU_IO_PROTOCOL_WIDTH) (Width & 0x03); in CpuIoCheckParameter()
135 if (!MmioOperation && (Width == EfiCpuIoWidthUint64)) { in CpuIoCheckParameter()
142 if ((Address & (UINT64)(mInStride[Width] - 1)) != 0) { in CpuIoCheckParameter()
167 MaxCount = RShiftU64 (Limit, Width); in CpuIoCheckParameter()
171 if (Address > LShiftU64 (MaxCount - Count + 1, Width)) { in CpuIoCheckParameter()
180 if (((UINTN)Buffer & ((MIN (sizeof (UINTN), mInStride[Width]) - 1))) != 0) { in CpuIoCheckParameter()
230 IN EFI_CPU_IO_PROTOCOL_WIDTH Width, in CpuMemoryServiceRead() argument
[all …]
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/CpuIoDxe/
DCpuIo.c100 IN EFI_CPU_IO_PROTOCOL_WIDTH Width, in CpuIoCheckParameter() argument
119 if ((UINT32)Width >= EfiCpuIoWidthMaximum) { in CpuIoCheckParameter()
127 if (Width >= EfiCpuIoWidthFifoUint8 && Width <= EfiCpuIoWidthFifoUint64) { in CpuIoCheckParameter()
134 Width = (EFI_CPU_IO_PROTOCOL_WIDTH) (Width & 0x03); in CpuIoCheckParameter()
135 if (!MmioOperation && (Width == EfiCpuIoWidthUint64)) { in CpuIoCheckParameter()
142 if ((Address & (UINT64)(mInStride[Width] - 1)) != 0) { in CpuIoCheckParameter()
167 MaxCount = RShiftU64 (Limit, Width); in CpuIoCheckParameter()
171 if (Address > LShiftU64 (MaxCount - Count + 1, Width)) { in CpuIoCheckParameter()
180 if (((UINTN)Buffer & ((MIN (sizeof (UINTN), mInStride[Width]) - 1))) != 0) { in CpuIoCheckParameter()
230 IN EFI_CPU_IO_PROTOCOL_WIDTH Width, in CpuMemoryServiceRead() argument
[all …]
/device/linaro/bootloader/edk2/DuetPkg/PciRootBridgeNoEnumerationDxe/Ipf/
DPcatIo.c55 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, in PcatRootBridgeIoIoRead() argument
84 if ((UINT32)Width >= EfiPciWidthMaximum) { in PcatRootBridgeIoIoRead()
88 if ((Width & 0x03) == EfiPciWidthUint64) { in PcatRootBridgeIoIoRead()
92 AlignMask = (1 << (Width & 0x03)) - 1; in PcatRootBridgeIoIoRead()
97 InStride = 1 << (Width & 0x03); in PcatRootBridgeIoIoRead()
99 if (Width >=EfiPciWidthFifoUint8 && Width <= EfiPciWidthFifoUint64) { in PcatRootBridgeIoIoRead()
102 if (Width >=EfiPciWidthFillUint8 && Width <= EfiPciWidthFillUint64) { in PcatRootBridgeIoIoRead()
105 Width = Width & 0x03; in PcatRootBridgeIoIoRead()
113 switch (Width) { in PcatRootBridgeIoIoRead()
159 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, in PcatRootBridgeIoIoWrite() argument
[all …]
/device/linaro/bootloader/edk2/EmulatorPkg/CpuRuntimeDxe/
DCpuIo.c40 IN EFI_CPU_IO_PROTOCOL_WIDTH Width,
51 IN EFI_CPU_IO_PROTOCOL_WIDTH Width, in CpuMemoryServiceRead() argument
90 Status = CpuIoCheckAddressRange (Width, Address, Count, Buffer, IA32_MAX_MEM_ADDRESS); in CpuMemoryServiceRead()
105 IN EFI_CPU_IO_PROTOCOL_WIDTH Width, in CpuMemoryServiceWrite() argument
143 Status = CpuIoCheckAddressRange (Width, Address, Count, Buffer, IA32_MAX_MEM_ADDRESS); in CpuMemoryServiceWrite()
158 IN EFI_CPU_IO_PROTOCOL_WIDTH Width, in CpuIoServiceRead() argument
197 if (Width >= EfiCpuIoWidthMaximum) { in CpuIoServiceRead()
201 Status = CpuIoCheckAddressRange (Width, Address, Count, UserBuffer, IA32_MAX_IO_ADDRESS); in CpuIoServiceRead()
216 IN EFI_CPU_IO_PROTOCOL_WIDTH Width, in CpuIoServiceWrite() argument
259 if (Width >= EfiCpuIoWidthMaximum) { in CpuIoServiceWrite()
[all …]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Include/
DEfiScriptLib.h59 IN EFI_BOOT_SCRIPT_WIDTH Width,
95 IN EFI_BOOT_SCRIPT_WIDTH Width,
131 IN EFI_BOOT_SCRIPT_WIDTH Width,
167 IN EFI_BOOT_SCRIPT_WIDTH Width,
203 IN EFI_BOOT_SCRIPT_WIDTH Width,
240 IN EFI_BOOT_SCRIPT_WIDTH Width,
373 IN EFI_BOOT_SCRIPT_WIDTH Width,
494 #define SCRIPT_IO_WRITE(TableName, Width, Address, Count, Buffer) \ argument
495 BootScriptSaveIoWrite(TableName, Width, Address, Count, Buffer)
497 #define SCRIPT_IO_READ_WRITE(TableName, Width, Address, Data, DataMask) \ argument
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/
DPciIo.c83 IN IN EFI_PCI_IO_PROTOCOL_WIDTH Width, in PciIoVerifyBarAccess() argument
88 if ((UINT32)Width >= EfiPciIoWidthMaximum) { in PciIoVerifyBarAccess()
111 if (Width >= EfiPciIoWidthFifoUint8 && Width <= EfiPciIoWidthFifoUint64) { in PciIoVerifyBarAccess()
115 Width = (EFI_PCI_IO_PROTOCOL_WIDTH) (Width & 0x03); in PciIoVerifyBarAccess()
117 if ((*Offset + Count * (UINTN)(1 << Width)) - 1 >= PciIoDevice->PciBar[BarIndex].Length) { in PciIoVerifyBarAccess()
142 IN EFI_PCI_IO_PROTOCOL_WIDTH Width, in PciIoVerifyConfigAccess() argument
149 if ((UINT32)Width >= EfiPciIoWidthMaximum) { in PciIoVerifyConfigAccess()
156 Width = (EFI_PCI_IO_PROTOCOL_WIDTH) (Width & 0x03); in PciIoVerifyConfigAccess()
159 if ((*Offset + Count * (UINTN)(1 << Width)) - 1 >= PCI_EXP_MAX_CONFIG_OFFSET) { in PciIoVerifyConfigAccess()
168 if ((*Offset + Count * (UINTN)(1 << Width)) - 1 >= PCI_MAX_CONFIG_OFFSET) { in PciIoVerifyConfigAccess()
[all …]
/device/linaro/bootloader/edk2/ArmPlatformPkg/ArmJunoPkg/Drivers/ArmJunoDxe/
DPciRootBridgeIo.c33 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, in PciRootBridgeIoMemRW() argument
45 Width = (EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH) (Width & 0x03); in PciRootBridgeIoMemRW()
46 Stride = (UINTN)1 << Width; in PciRootBridgeIoMemRW()
53 switch (Width) { in PciRootBridgeIoMemRW()
80 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, in PciRootBridgeIoPciRW() argument
108 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, in PciRootBridgeIoMemRead() argument
129 AlignMask = (1 << (Width & 0x03)) - 1; in PciRootBridgeIoMemRead()
137 switch (Width) { in PciRootBridgeIoMemRead()
142 return PciRootBridgeIoMemRW (Width, Count, TRUE, In, TRUE, Out); in PciRootBridgeIoMemRead()
148 return PciRootBridgeIoMemRW (Width, Count, TRUE, In, FALSE, Out); in PciRootBridgeIoMemRead()
[all …]
/device/linaro/bootloader/OpenPlatformPkg/Chips/TexasInstruments/Omap35xx/PciEmulation/
DPciRootBridgeIo.c33 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, in PciRootBridgeIoMemRW() argument
46 Width = (EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH) (Width & 0x03); in PciRootBridgeIoMemRW()
47 Stride = (UINTN)1 << Width; in PciRootBridgeIoMemRW()
54 switch (Width) { in PciRootBridgeIoMemRW()
81 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, in PciRootBridgeIoPciRW() argument
109 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, in PciRootBridgeIoMemRead() argument
130 AlignMask = (1 << (Width & 0x03)) - 1; in PciRootBridgeIoMemRead()
138 switch (Width) { in PciRootBridgeIoMemRead()
143 return PciRootBridgeIoMemRW (Width, Count, TRUE, In, TRUE, Out); in PciRootBridgeIoMemRead()
149 return PciRootBridgeIoMemRW (Width, Count, TRUE, In, FALSE, Out); in PciRootBridgeIoMemRead()
[all …]
/device/linaro/bootloader/edk2/Omap35xxPkg/PciEmulation/
DPciRootBridgeIo.c33 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, in PciRootBridgeIoMemRW() argument
46 Width = (EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH) (Width & 0x03); in PciRootBridgeIoMemRW()
47 Stride = (UINTN)1 << Width; in PciRootBridgeIoMemRW()
54 switch (Width) { in PciRootBridgeIoMemRW()
81 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, in PciRootBridgeIoPciRW() argument
109 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, in PciRootBridgeIoMemRead() argument
130 AlignMask = (1 << (Width & 0x03)) - 1; in PciRootBridgeIoMemRead()
138 switch (Width) { in PciRootBridgeIoMemRead()
143 return PciRootBridgeIoMemRW (Width, Count, TRUE, In, TRUE, Out); in PciRootBridgeIoMemRead()
149 return PciRootBridgeIoMemRW (Width, Count, TRUE, In, FALSE, Out); in PciRootBridgeIoMemRead()
[all …]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/
DValueToString.c33 IN UINTN Width in EfiValueToHexStr() argument
73 if (Width > CHARACTER_NUMBER_FOR_VALUE - 1) { in EfiValueToHexStr()
74 Width = CHARACTER_NUMBER_FOR_VALUE - 1; in EfiValueToHexStr()
92 for (; Index < Width; Index++) { in EfiValueToHexStr()
100 if (Width > 0 && (UINTN) (TempStr - TempBuffer) > Width) { in EfiValueToHexStr()
101 TempStr = TempBuffer + Width; in EfiValueToHexStr()
119 IN UINTN Width in EfiValueToString() argument
160 if (Width > CHARACTER_NUMBER_FOR_VALUE - 1) { in EfiValueToString()
161 Width = CHARACTER_NUMBER_FOR_VALUE - 1; in EfiValueToString()
195 for (; Index < Width; Index++) { in EfiValueToString()
[all …]
/device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/
DHwIoDebug.c48 UINTN Width; in EblIoReadCmd() local
57 Width = WidthFromCommandName (Argv[0], 1); in EblIoReadCmd()
59 if (Width == 1) { in EblIoReadCmd()
61 } else if (Width == 2) { in EblIoReadCmd()
63 } else if (Width == 4) { in EblIoReadCmd()
99 UINTN Width; in EblIoWriteCmd() local
109 Width = WidthFromCommandName (Argv[0], 1); in EblIoWriteCmd()
111 if (Width == 1) { in EblIoWriteCmd()
113 } else if (Width == 2) { in EblIoWriteCmd()
115 } else if (Width == 4) { in EblIoWriteCmd()
/device/linaro/bootloader/edk2/OptionRomPkg/Library/GopBltLib/
DGopBltLib.c111 IN UINTN Width, in InternalGopBltCommon() argument
128 Width, in InternalGopBltCommon()
165 IN UINTN Width, in BltLibGopBlt() argument
177 Width, in BltLibGopBlt()
204 IN UINTN Width, in BltLibVideoFill() argument
215 Width, in BltLibVideoFill()
242 IN UINTN Width, in BltLibVideoToBltBuffer() argument
253 Width, in BltLibVideoToBltBuffer()
286 IN UINTN Width, in BltLibVideoToBltBufferEx() argument
298 Width, in BltLibVideoToBltBufferEx()
[all …]
/device/linaro/bootloader/edk2/QuarkPlatformPkg/Pci/Dxe/PciHostBridge/
DPciRootBridgeIo.c160 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, in RootBridgeIoPollMem() argument
201 if (Width < 0 || Width > EfiPciWidthUint64) { in RootBridgeIoPollMem()
209 Width, in RootBridgeIoPollMem()
249 Width, in RootBridgeIoPollMem()
273 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, in RootBridgeIoPollIo() argument
317 if (Width < 0 || Width > EfiPciWidthUint64) { in RootBridgeIoPollIo()
323 Width, in RootBridgeIoPollIo()
360 Width, in RootBridgeIoPollIo()
384 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, in RootBridgeIoMemRead() argument
416 if (Width < 0 || in RootBridgeIoMemRead()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Library/PiDxeS3BootScriptLib/
DBootScriptInternalFormat.h43 UINT32 Width; member
49 UINT32 Width; member
57 UINT32 Width; member
64 UINT32 Width; member
72 UINT32 Width; member
79 UINT32 Width; member
87 UINT32 Width; member
96 UINT32 Width; member
103 UINT32 Width; member
138 UINT32 Width; member
[all …]
/device/linaro/bootloader/edk2/OptionRomPkg/Library/FrameBufferBltLib/
DFrameBufferBltLib.c160 IN UINTN Width, in BltLibGopBlt() argument
173 Width, in BltLibGopBlt()
184 Width, in BltLibGopBlt()
193 Width, in BltLibGopBlt()
204 Width, in BltLibGopBlt()
234 IN UINTN Width, in BltLibVideoFill() argument
258 if (DestinationX + Width > mBltLibWidthInPixels) { in BltLibVideoFill()
263 if (Width == 0 || Height == 0) { in BltLibVideoFill()
268 WidthInBytes = Width * mBltLibBytesPerPixel; in BltLibVideoFill()
307 if (UseWideFill && (DestinationX == 0) && (Width == mBltLibWidthInPixels)) { in BltLibVideoFill()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/
DImage.c48 UINT16 Width; in GetImageIdOrAddress() local
106 BITMAP_LEN_1_BIT (Iibt1bit.Bitmap.Width, Iibt1bit.Bitmap.Height); in GetImageIdOrAddress()
114 BITMAP_LEN_4_BIT (Iibt4bit.Bitmap.Width, Iibt4bit.Bitmap.Height); in GetImageIdOrAddress()
122 BITMAP_LEN_8_BIT (Iibt8bit.Bitmap.Width, Iibt8bit.Bitmap.Height); in GetImageIdOrAddress()
128 CopyMem (&Width, ImageBlock + sizeof (EFI_HII_IMAGE_BLOCK), sizeof (UINT16)); in GetImageIdOrAddress()
135 BITMAP_LEN_24_BIT (Width, Height); in GetImageIdOrAddress()
294 OffsetY = BITMAP_LEN_1_BIT (Image->Width, Ypos); in Output1bitPixel()
298 for (Xpos = 0; Xpos < Image->Width / 8; Xpos++) { in Output1bitPixel()
302 BitMapPtr[Ypos * Image->Width + Xpos * 8 + (8 - Index - 1)] = PaletteValue[1]; in Output1bitPixel()
304 BitMapPtr[Ypos * Image->Width + Xpos * 8 + (8 - Index - 1)] = PaletteValue[0]; in Output1bitPixel()
[all …]
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/BootScriptSaveDxe/
DScriptSave.c49 S3_BOOT_SCRIPT_LIB_WIDTH Width; in BootScriptIoWrite()
54 Width = VA_ARG (Marker, S3_BOOT_SCRIPT_LIB_WIDTH); in BootScriptIoWrite()
59 return S3BootScriptSaveIoWrite (Width, Address, Count, Buffer); in BootScriptIoWrite()
77 S3_BOOT_SCRIPT_LIB_WIDTH Width; in BootScriptIoReadWrite()
82 Width = VA_ARG (Marker, S3_BOOT_SCRIPT_LIB_WIDTH); in BootScriptIoReadWrite()
87 return S3BootScriptSaveIoReadWrite (Width, Address, Data, DataMask); in BootScriptIoReadWrite()
105 S3_BOOT_SCRIPT_LIB_WIDTH Width; in BootScriptMemWrite()
110 Width = VA_ARG (Marker, S3_BOOT_SCRIPT_LIB_WIDTH); in BootScriptMemWrite()
115 return S3BootScriptSaveMemWrite (Width, Address, Count, Buffer); in BootScriptMemWrite()
133 S3_BOOT_SCRIPT_LIB_WIDTH Width; in BootScriptMemReadWrite()
[all …]
/device/linaro/bootloader/edk2/DuetPkg/PciRootBridgeNoEnumerationDxe/
DPcatPciRootBridgeIo.c32 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width,
44 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width,
56 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width,
66 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width,
76 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width,
86 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width,
96 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width,
175 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width,
242 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, in PcatRootBridgeIoPollMem() argument
259 if ((UINT32)Width > EfiPciWidthUint64) { in PcatRootBridgeIoPollMem()
[all …]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/X64/
DIoLib.c30 IN EFI_CPU_IO_PROTOCOL_WIDTH Width, in EfiIoRead() argument
51 return gCpuIo->Io.Read (gCpuIo, Width, Address, Count, Buffer); in EfiIoRead()
56 IN EFI_CPU_IO_PROTOCOL_WIDTH Width, in EfiIoWrite() argument
77 return gCpuIo->Io.Write (gCpuIo, Width, Address, Count, Buffer); in EfiIoWrite()
82 IN EFI_CPU_IO_PROTOCOL_WIDTH Width, in EfiMemRead() argument
103 return gCpuIo->Mem.Read (gCpuIo, Width, Address, Count, Buffer); in EfiMemRead()
108 IN EFI_CPU_IO_PROTOCOL_WIDTH Width, in EfiMemWrite() argument
129 return gCpuIo->Mem.Write (gCpuIo, Width, Address, Count, Buffer); in EfiMemWrite()
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/Ia32/
DIoLib.c30 IN EFI_CPU_IO_PROTOCOL_WIDTH Width, in EfiIoRead() argument
51 return gCpuIo->Io.Read (gCpuIo, Width, Address, Count, Buffer); in EfiIoRead()
56 IN EFI_CPU_IO_PROTOCOL_WIDTH Width, in EfiIoWrite() argument
77 return gCpuIo->Io.Write (gCpuIo, Width, Address, Count, Buffer); in EfiIoWrite()
82 IN EFI_CPU_IO_PROTOCOL_WIDTH Width, in EfiMemRead() argument
103 return gCpuIo->Mem.Read (gCpuIo, Width, Address, Count, Buffer); in EfiMemRead()
108 IN EFI_CPU_IO_PROTOCOL_WIDTH Width, in EfiMemWrite() argument
129 return gCpuIo->Mem.Write (gCpuIo, Width, Address, Count, Buffer); in EfiMemWrite()
/device/linaro/bootloader/edk2/DuetPkg/PciBusNoEnumerationDxe/
DPciIo.c70 IN EFI_PCI_IO_PROTOCOL_WIDTH Width,
78 IN EFI_PCI_IO_PROTOCOL_WIDTH Width,
87 IN EFI_PCI_IO_PROTOCOL_WIDTH Width,
100 IN EFI_PCI_IO_PROTOCOL_WIDTH Width,
113 IN EFI_PCI_IO_PROTOCOL_WIDTH Width,
124 IN EFI_PCI_IO_PROTOCOL_WIDTH Width,
135 IN EFI_PCI_IO_PROTOCOL_WIDTH Width,
146 IN EFI_PCI_IO_PROTOCOL_WIDTH Width,
157 IN EFI_PCI_IO_PROTOCOL_WIDTH Width,
167 IN EFI_PCI_IO_PROTOCOL_WIDTH Width,
[all …]
/device/linaro/bootloader/edk2/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/
DLcdGraphicsOutputBlt.c41 IN UINTN Width, in VideoCopyNoHorizontalOverlap() argument
70 WidthInBytes = Width * 4; in VideoCopyNoHorizontalOverlap()
90 WidthInBytes = Width * 2; in VideoCopyNoHorizontalOverlap()
133 IN UINTN Width, in VideoCopyHorizontalOverlap() argument
157 PixelBuffer32bit = (UINT32 *) AllocatePool((Height * Width) * sizeof(UINT32)); in VideoCopyHorizontalOverlap()
164 SizeIn32Bits = Width * 4; in VideoCopyHorizontalOverlap()
169 SourcePixelY++, DestinationPixel32bit += Width) in VideoCopyHorizontalOverlap()
181 DestinationPixelY++, SourcePixel32bit += Width) in VideoCopyHorizontalOverlap()
200 PixelBuffer16bit = (UINT16 *) AllocatePool((Height * Width) * sizeof(UINT16)); in VideoCopyHorizontalOverlap()
209 SizeIn16Bits = Width * 2; in VideoCopyHorizontalOverlap()
[all …]
/device/linaro/bootloader/edk2/PcAtChipsetPkg/PciHostBridgeDxe/
DPciRootBridgeIo.c85 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width,
140 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width,
186 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width,
230 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width,
269 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width,
308 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width,
356 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width,
402 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width,
448 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width,
955 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, in RootBridgeIoCheckParameter() argument
[all …]

12345678910>>...12