Lines Matching defs:Width

96   @param[in]  Width          The width of the access. Enumerated in bytes.
102 @retval EFI_INVALID_PARAMETER Width is invalid for this EFI system.
104 @retval EFI_UNSUPPORTED The address range specified by Address, Width,
111 IN EFI_PEI_CPU_IO_PPI_WIDTH Width,
128 // Check to see if Width is in the valid range
130 if (Width < 0 || Width >= EfiPeiCpuIoWidthMaximum) {
138 if (Width >= EfiPeiCpuIoWidthFifoUint8 && Width <= EfiPeiCpuIoWidthFifoUint64) {
143 // Check to see if Width is in the valid range for I/O Port operations
145 Width = (EFI_PEI_CPU_IO_PPI_WIDTH) (Width & 0x03);
146 if (!MmioOperation && (Width == EfiPeiCpuIoWidthUint64)) {
171 MaxCount = RShiftU64 (Limit, Width);
175 if (Address > LShiftU64 (MaxCount - Count + 1, Width)) {
189 @param[in] Width The width of the access. Enumerated in bytes.
195 @retval EFI_INVALID_PARAMETER Width is invalid for this EFI system.
197 @retval EFI_UNSUPPORTED The address range specified by Address, Width,
206 IN EFI_PEI_CPU_IO_PPI_WIDTH Width,
219 Status = CpuIoCheckParameter (TRUE, Width, Address, Count, Buffer);
227 InStride = mInStride[Width];
228 OutStride = mOutStride[Width];
229 OperationWidth = (EFI_PEI_CPU_IO_PPI_WIDTH) (Width & 0x03);
263 @param[in] Width The width of the access. Enumerated in bytes.
269 @retval EFI_INVALID_PARAMETER Width is invalid for this EFI system.
271 @retval EFI_UNSUPPORTED The address range specified by Address, Width,
280 IN EFI_PEI_CPU_IO_PPI_WIDTH Width,
293 Status = CpuIoCheckParameter (TRUE, Width, Address, Count, Buffer);
301 InStride = mInStride[Width];
302 OutStride = mOutStride[Width];
303 OperationWidth = (EFI_PEI_CPU_IO_PPI_WIDTH) (Width & 0x03);
337 @param[in] Width The width of the access. Enumerated in bytes.
343 @retval EFI_INVALID_PARAMETER Width is invalid for this EFI system.
345 @retval EFI_UNSUPPORTED The address range specified by Address, Width,
354 IN EFI_PEI_CPU_IO_PPI_WIDTH Width,
367 Status = CpuIoCheckParameter (FALSE, Width, Address, Count, Buffer);
375 InStride = mInStride[Width];
376 OutStride = mOutStride[Width];
377 OperationWidth = (EFI_PEI_CPU_IO_PPI_WIDTH) (Width & 0x03);
406 @param[in] Width The width of the access. Enumerated in bytes.
412 @retval EFI_INVALID_PARAMETER Width is invalid for this EFI system.
414 @retval EFI_UNSUPPORTED The address range specified by Address, Width,
423 IN EFI_PEI_CPU_IO_PPI_WIDTH Width,
439 Status = CpuIoCheckParameter (FALSE, Width, Address, Count, Buffer);
447 InStride = mInStride[Width];
448 OutStride = mOutStride[Width];
449 OperationWidth = (EFI_PEI_CPU_IO_PPI_WIDTH) (Width & 0x03);