Lines Matching defs:Width

50   @param[in]  Width          Signifies the width of the I/O operations.
60 @retval EFI_INVALID_PARAMETER Width or Count, or both, were invalid.
66 IN EFI_SMM_IO_WIDTH Width,
83 // Check to see if Width is in the valid range
85 if (Width < 0 || Width > SMM_IO_UINT64) {
90 // Check to see if Width is in the valid range for I/O Port operations
92 if (!MmioOperation && (Width == SMM_IO_UINT64)) {
117 MaxCount = RShiftU64 (Limit, Width);
121 if (Address > LShiftU64 (MaxCount - Count + 1, Width)) {
129 if ((Address & (UINT64)(mStride[Width] - 1)) != 0) {
144 @param[in] Width Signifies the width of the I/O operations.
154 @retval EFI_INVALID_PARAMETER Width or Count, or both, were invalid.
163 IN EFI_SMM_IO_WIDTH Width,
173 Status = CpuIoCheckParameter (TRUE, Width, Address, Count, Buffer);
181 Stride = mStride[Width];
183 if (Width == SMM_IO_UINT8) {
185 } else if (Width == SMM_IO_UINT16) {
187 } else if (Width == SMM_IO_UINT32) {
189 } else if (Width == SMM_IO_UINT64) {
204 @param[in] Width Signifies the width of the I/O operations.
214 @retval EFI_INVALID_PARAMETER Width or Count, or both, were invalid.
223 IN EFI_SMM_IO_WIDTH Width,
233 Status = CpuIoCheckParameter (TRUE, Width, Address, Count, Buffer);
241 Stride = mStride[Width];
243 if (Width == SMM_IO_UINT8) {
245 } else if (Width == SMM_IO_UINT16) {
247 } else if (Width == SMM_IO_UINT32) {
249 } else if (Width == SMM_IO_UINT64) {
264 @param[in] Width Signifies the width of the I/O operations.
274 @retval EFI_INVALID_PARAMETER Width or Count, or both, were invalid.
283 IN EFI_SMM_IO_WIDTH Width,
293 Status = CpuIoCheckParameter (FALSE, Width, Address, Count, Buffer);
301 Stride = mStride[Width];
303 if (Width == SMM_IO_UINT8) {
305 } else if (Width == SMM_IO_UINT16) {
307 } else if (Width == SMM_IO_UINT32) {
323 @param[in] Width Signifies the width of the I/O operations.
333 @retval EFI_INVALID_PARAMETER Width or Count, or both, were invalid.
342 IN EFI_SMM_IO_WIDTH Width,
355 Status = CpuIoCheckParameter (FALSE, Width, Address, Count, Buffer);
363 Stride = mStride[Width];
365 if (Width == SMM_IO_UINT8) {
367 } else if (Width == SMM_IO_UINT16) {
369 } else if (Width == SMM_IO_UINT32) {