Searched defs:StartBit (Results 1 - 25 of 25) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/
H A DX86Msr.c164 specified by the StartBit and the EndBit. The value of the bit field is
169 If StartBit is greater than 31, then ASSERT().
171 If EndBit is less than StartBit, then ASSERT().
174 @param StartBit The ordinal of the least significant bit in the bit field.
186 IN UINTN StartBit,
190 return BitFieldRead32 (AsmReadMsr32 (Index), StartBit, EndBit);
197 field is specified by the StartBit and the EndBit. All other bits in the
203 If StartBit is greater than 31, then ASSERT().
205 If EndBit is less than StartBit, then ASSERT().
208 @param StartBit Th
184 AsmMsrBitFieldRead32( IN UINT32 Index, IN UINTN StartBit, IN UINTN EndBit ) argument
219 AsmMsrBitFieldWrite32( IN UINT32 Index, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
259 AsmMsrBitFieldOr32( IN UINT32 Index, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
299 AsmMsrBitFieldAnd32( IN UINT32 Index, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
342 AsmMsrBitFieldAndThenOr32( IN UINT32 Index, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
473 AsmMsrBitFieldRead64( IN UINT32 Index, IN UINTN StartBit, IN UINTN EndBit ) argument
507 AsmMsrBitFieldWrite64( IN UINT32 Index, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 Value ) argument
548 AsmMsrBitFieldOr64( IN UINT32 Index, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 OrData ) argument
589 AsmMsrBitFieldAnd64( IN UINT32 Index, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData ) argument
632 AsmMsrBitFieldAndThenOr64( IN UINT32 Index, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData, IN UINT64 OrData ) argument
[all...]
H A DBitField.c20 Returns the bitfield specified by the StartBit and the EndBit from Operand.
23 @param StartBit The ordinal of the least significant bit in the bit field.
33 IN UINTN StartBit,
41 return (Operand & ~((UINTN)-2 << EndBit)) >> StartBit;
48 Performs a bitwise OR between the bit field specified by StartBit and EndBit
53 @param StartBit The ordinal of the least significant bit in the bit field.
64 IN UINTN StartBit,
73 return Operand | ((OrData << StartBit) & ~((UINTN) -2 << EndBit));
80 Performs a bitwise AND between the bit field specified by StartBit and EndBit
85 @param StartBit Th
31 InternalBaseLibBitFieldReadUint( IN UINTN Operand, IN UINTN StartBit, IN UINTN EndBit ) argument
62 InternalBaseLibBitFieldOrUint( IN UINTN Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINTN OrData ) argument
94 InternalBaseLibBitFieldAndUint( IN UINTN Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINTN AndData ) argument
129 BitFieldRead8( IN UINT8 Operand, IN UINTN StartBit, IN UINTN EndBit ) argument
164 BitFieldWrite8( IN UINT8 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
201 BitFieldOr8( IN UINT8 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
238 BitFieldAnd8( IN UINT8 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
277 BitFieldAndThenOr8( IN UINT8 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
316 BitFieldRead16( IN UINT16 Operand, IN UINTN StartBit, IN UINTN EndBit ) argument
351 BitFieldWrite16( IN UINT16 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
388 BitFieldOr16( IN UINT16 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
425 BitFieldAnd16( IN UINT16 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
464 BitFieldAndThenOr16( IN UINT16 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
503 BitFieldRead32( IN UINT32 Operand, IN UINTN StartBit, IN UINTN EndBit ) argument
538 BitFieldWrite32( IN UINT32 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
575 BitFieldOr32( IN UINT32 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
612 BitFieldAnd32( IN UINT32 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
651 BitFieldAndThenOr32( IN UINT32 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
690 BitFieldRead64( IN UINT64 Operand, IN UINTN StartBit, IN UINTN EndBit ) argument
725 BitFieldWrite64( IN UINT64 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 Value ) argument
762 BitFieldOr64( IN UINT64 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 OrData ) argument
806 BitFieldAnd64( IN UINT64 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData ) argument
852 BitFieldAndThenOr64( IN UINT64 Operand, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData, IN UINT64 OrData ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/EhciDxe/
H A DUsbHcMem.c170 UINT8 StartBit; local
177 StartBit = 0;
200 StartBit = Bit;
212 Bit = StartBit;
221 return Block->BufHost + (StartByte * 8 + StartBit) * USBHC_MEM_UNIT;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/EhciPei/
H A DUsbHcMem.c144 UINT8 StartBit; local
151 StartBit = 0;
174 StartBit = Bit;
186 Bit = StartBit;
195 return Block->Buf + (StartByte * 8 + StartBit) * USBHC_MEM_UNIT;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/UhciDxe/
H A DUsbHcMem.c169 UINT8 StartBit; local
176 StartBit = 0;
199 StartBit = Bit;
211 Bit = StartBit;
220 return Block->Buf + (StartByte * 8 + StartBit) * USBHC_MEM_UNIT;
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePciLibCf8/
H A DPciLib.c199 specified by the StartBit and the EndBit. The value of the bit field is
203 If StartBit is greater than 7, then ASSERT().
205 If EndBit is less than StartBit, then ASSERT().
208 @param StartBit The ordinal of the least significant bit in the bit field.
220 IN UINTN StartBit,
224 return PciCf8BitFieldRead8 (Address, StartBit, EndBit);
231 field is specified by the StartBit and the EndBit. All other bits in the
236 If StartBit is greater than 7, then ASSERT().
238 If EndBit is less than StartBit, then ASSERT().
241 @param StartBit Th
218 PciBitFieldRead8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
252 PciBitFieldWrite8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
290 PciBitFieldOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
328 PciBitFieldAnd8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
369 PciBitFieldAndThenOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
552 PciBitFieldRead16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
587 PciBitFieldWrite16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
626 PciBitFieldOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
665 PciBitFieldAnd16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
707 PciBitFieldAndThenOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
890 PciBitFieldRead32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
925 PciBitFieldWrite32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
964 PciBitFieldOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
1003 PciBitFieldAnd32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
1045 PciBitFieldAndThenOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePciLibPciExpress/
H A DPciLib.c199 specified by the StartBit and the EndBit. The value of the bit field is
203 If StartBit is greater than 7, then ASSERT().
205 If EndBit is less than StartBit, then ASSERT().
208 @param StartBit The ordinal of the least significant bit in the bit field.
220 IN UINTN StartBit,
224 return PciExpressBitFieldRead8 (Address, StartBit, EndBit);
231 field is specified by the StartBit and the EndBit. All other bits in the
236 If StartBit is greater than 7, then ASSERT().
238 If EndBit is less than StartBit, then ASSERT().
241 @param StartBit Th
218 PciBitFieldRead8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
252 PciBitFieldWrite8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
290 PciBitFieldOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
328 PciBitFieldAnd8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
369 PciBitFieldAndThenOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
552 PciBitFieldRead16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
587 PciBitFieldWrite16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
626 PciBitFieldOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
665 PciBitFieldAnd16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
707 PciBitFieldAndThenOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
890 PciBitFieldRead32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
925 PciBitFieldWrite32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
964 PciBitFieldOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
1003 PciBitFieldAnd32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
1045 PciBitFieldAndThenOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePciCf8Lib/
H A DPciCf8Lib.c315 specified by the StartBit and the EndBit. The value of the bit field is
320 If StartBit is greater than 7, then ASSERT().
322 If EndBit is less than StartBit, then ASSERT().
325 @param StartBit The ordinal of the least significant bit in the bit field.
337 IN UINTN StartBit,
351 StartBit,
363 field is specified by the StartBit and the EndBit. All other bits in the
369 If StartBit is greater than 7, then ASSERT().
371 If EndBit is less than StartBit, then ASSERT().
374 @param StartBit Th
335 PciCf8BitFieldRead8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
385 PciCf8BitFieldWrite8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
440 PciCf8BitFieldOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
495 PciCf8BitFieldAnd8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
553 PciCf8BitFieldAndThenOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
827 PciCf8BitFieldRead16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
878 PciCf8BitFieldWrite16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
934 PciCf8BitFieldOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
990 PciCf8BitFieldAnd16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
1049 PciCf8BitFieldAndThenOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
1323 PciCf8BitFieldRead32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1374 PciCf8BitFieldWrite32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
1430 PciCf8BitFieldOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
1486 PciCf8BitFieldAnd32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
1545 PciCf8BitFieldAndThenOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePciExpressLib/
H A DPciExpressLib.c244 specified by the StartBit and the EndBit. The value of the bit field is
248 If StartBit is greater than 7, then ASSERT().
250 If EndBit is less than StartBit, then ASSERT().
253 @param StartBit The ordinal of the least significant bit in the bit field.
265 IN UINTN StartBit,
272 StartBit,
281 field is specified by the StartBit and the EndBit. All other bits in the
286 If StartBit is greater than 7, then ASSERT().
288 If EndBit is less than StartBit, then ASSERT().
291 @param StartBit Th
263 PciExpressBitFieldRead8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
302 PciExpressBitFieldWrite8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
346 PciExpressBitFieldOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
390 PciExpressBitFieldAnd8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
437 PciExpressBitFieldAndThenOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
636 PciExpressBitFieldRead16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
676 PciExpressBitFieldWrite16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
721 PciExpressBitFieldOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
766 PciExpressBitFieldAnd16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
814 PciExpressBitFieldAndThenOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
1013 PciExpressBitFieldRead32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1053 PciExpressBitFieldWrite32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
1098 PciExpressBitFieldOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
1143 PciExpressBitFieldAnd32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
1191 PciExpressBitFieldAndThenOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseS3PciLib/
H A DS3PciLib.c239 specified by the StartBit and the EndBit. The value of the bit field is
243 If StartBit is greater than 7, then ASSERT().
245 If EndBit is less than StartBit, then ASSERT().
248 @param StartBit The ordinal of the least significant bit in the bit field.
260 IN UINTN StartBit,
264 return InternalSavePciWrite8ValueToBootScript (Address, PciBitFieldRead8 (Address, StartBit, EndBit));
272 field is specified by the StartBit and the EndBit. All other bits in the
277 If StartBit is greater than 7, then ASSERT().
279 If EndBit is less than StartBit, then ASSERT().
282 @param StartBit Th
258 S3PciBitFieldRead8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
293 S3PciBitFieldWrite8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
332 S3PciBitFieldOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
371 S3PciBitFieldAnd8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
412 S3PciBitFieldAndThenOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
625 S3PciBitFieldRead16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
661 S3PciBitFieldWrite16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
701 S3PciBitFieldOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
741 S3PciBitFieldAnd16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
783 S3PciBitFieldAndThenOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
996 S3PciBitFieldRead32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1032 S3PciBitFieldWrite32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
1072 S3PciBitFieldOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
1112 S3PciBitFieldAnd32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
1154 S3PciBitFieldAndThenOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxePciLibEsal/
H A DPciLib.c355 specified by the StartBit and the EndBit. The value of the bit field is
359 If StartBit is greater than 7, then ASSERT().
361 If EndBit is less than StartBit, then ASSERT().
364 @param StartBit The ordinal of the least significant bit in the bit field.
376 IN UINTN StartBit,
380 return BitFieldRead8 (PciRead8 (Address), StartBit, EndBit);
387 field is specified by the StartBit and the EndBit. All other bits in the
392 If StartBit is greater than 7, then ASSERT().
394 If EndBit is less than StartBit, then ASSERT().
397 @param StartBit Th
374 PciBitFieldRead8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
408 PciBitFieldWrite8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
449 PciBitFieldOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
490 PciBitFieldAnd8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
534 PciBitFieldAndThenOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
724 PciBitFieldRead16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
759 PciBitFieldWrite16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
801 PciBitFieldOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
843 PciBitFieldAnd16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
888 PciBitFieldAndThenOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
1078 PciBitFieldRead32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1113 PciBitFieldWrite32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
1155 PciBitFieldOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
1197 PciBitFieldAnd32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
1242 PciBitFieldAndThenOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxePciSegmentLibEsal/
H A DPciLib.c327 specified by the StartBit and the EndBit. The value of the bit field is
331 If StartBit is greater than 7, then ASSERT().
333 If EndBit is less than StartBit, then ASSERT().
336 @param StartBit The ordinal of the least significant bit in the bit field.
348 IN UINTN StartBit,
352 return BitFieldRead8 (PciSegmentRead8 (Address), StartBit, EndBit);
359 field is specified by the StartBit and the EndBit. All other bits in the
364 If StartBit is greater than 7, then ASSERT().
366 If EndBit is less than StartBit, then ASSERT().
369 @param StartBit Th
346 PciSegmentBitFieldRead8( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit ) argument
380 PciSegmentBitFieldWrite8( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
421 PciSegmentBitFieldOr8( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
462 PciSegmentBitFieldAnd8( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
506 PciSegmentBitFieldAndThenOr8( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
690 PciSegmentBitFieldRead16( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit ) argument
724 PciSegmentBitFieldWrite16( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
765 PciSegmentBitFieldOr16( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
806 PciSegmentBitFieldAnd16( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
850 PciSegmentBitFieldAndThenOr16( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
1034 PciSegmentBitFieldRead32( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1068 PciSegmentBitFieldWrite32( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
1109 PciSegmentBitFieldOr32( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
1150 PciSegmentBitFieldAnd32( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
1194 PciSegmentBitFieldAndThenOr32( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxeRuntimePciExpressLib/
H A DPciExpressLib.c504 specified by the StartBit and the EndBit. The value of the bit field is
508 If StartBit is greater than 7, then ASSERT().
510 If EndBit is less than StartBit, then ASSERT().
513 @param StartBit The ordinal of the least significant bit in the bit field.
525 IN UINTN StartBit,
531 StartBit,
540 field is specified by the StartBit and the EndBit. All other bits in the
545 If StartBit is greater than 7, then ASSERT().
547 If EndBit is less than StartBit, then ASSERT().
550 @param StartBit Th
523 PciExpressBitFieldRead8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
561 PciExpressBitFieldWrite8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
604 PciExpressBitFieldOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
647 PciExpressBitFieldAnd8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
693 PciExpressBitFieldAndThenOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
886 PciExpressBitFieldRead16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
925 PciExpressBitFieldWrite16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
969 PciExpressBitFieldOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
1013 PciExpressBitFieldAnd16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
1060 PciExpressBitFieldAndThenOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
1253 PciExpressBitFieldRead32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1292 PciExpressBitFieldWrite32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
1336 PciExpressBitFieldOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
1380 PciExpressBitFieldAnd32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
1427 PciExpressBitFieldAndThenOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/PeiPciLibPciCfg2/
H A DPciLib.c313 specified by the StartBit and the EndBit. The value of the bit field is
317 If StartBit is greater than 7, then ASSERT().
319 If EndBit is less than StartBit, then ASSERT().
322 @param StartBit The ordinal of the least significant bit in the bit field.
334 IN UINTN StartBit,
338 return BitFieldRead8 (PciRead8 (Address), StartBit, EndBit);
345 field is specified by the StartBit and the EndBit. All other bits in the
350 If StartBit is greater than 7, then ASSERT().
352 If EndBit is less than StartBit, then ASSERT().
355 @param StartBit Th
332 PciBitFieldRead8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
366 PciBitFieldWrite8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
407 PciBitFieldOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
448 PciBitFieldAnd8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
492 PciBitFieldAndThenOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
682 PciBitFieldRead16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
717 PciBitFieldWrite16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
759 PciBitFieldOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
801 PciBitFieldAnd16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
846 PciBitFieldAndThenOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
1036 PciBitFieldRead32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1071 PciBitFieldWrite32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
1113 PciBitFieldOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
1155 PciBitFieldAnd32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
1200 PciBitFieldAndThenOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/PeiPciSegmentLibPciCfg2/
H A DPciSegmentLib.c332 specified by the StartBit and the EndBit. The value of the bit field is
336 If StartBit is greater than 7, then ASSERT().
338 If EndBit is less than StartBit, then ASSERT().
341 @param StartBit The ordinal of the least significant bit in the bit field.
353 IN UINTN StartBit,
357 return BitFieldRead8 (PciSegmentRead8 (Address), StartBit, EndBit);
364 field is specified by the StartBit and the EndBit. All other bits in the
369 If StartBit is greater than 7, then ASSERT().
371 If EndBit is less than StartBit, then ASSERT().
374 @param StartBit Th
351 PciSegmentBitFieldRead8( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit ) argument
385 PciSegmentBitFieldWrite8( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
426 PciSegmentBitFieldOr8( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
467 PciSegmentBitFieldAnd8( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
511 PciSegmentBitFieldAndThenOr8( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
692 PciSegmentBitFieldRead16( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit ) argument
727 PciSegmentBitFieldWrite16( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
763 PciSegmentBitFieldOr16( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
805 PciSegmentBitFieldAnd16( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
849 PciSegmentBitFieldAndThenOr16( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
1031 PciSegmentBitFieldRead32( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1066 PciSegmentBitFieldWrite32( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
1107 PciSegmentBitFieldOr32( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
1149 PciSegmentBitFieldAnd32( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
1193 PciSegmentBitFieldAndThenOr32( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/SmmPciLibPciRootBridgeIo/
H A DPciLib.c325 specified by the StartBit and the EndBit. The value of the bit field is
329 If StartBit is greater than 7, then ASSERT().
331 If EndBit is less than StartBit, then ASSERT().
334 @param StartBit The ordinal of the least significant bit in the bit field.
346 IN UINTN StartBit,
350 return BitFieldRead8 (PciRead8 (Address), StartBit, EndBit);
357 field is specified by the StartBit and the EndBit. All other bits in the
362 If StartBit is greater than 7, then ASSERT().
364 If EndBit is less than StartBit, then ASSERT().
367 @param StartBit Th
344 PciBitFieldRead8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
378 PciBitFieldWrite8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
419 PciBitFieldOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
460 PciBitFieldAnd8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
504 PciBitFieldAndThenOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
694 PciBitFieldRead16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
729 PciBitFieldWrite16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
771 PciBitFieldOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
813 PciBitFieldAnd16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
858 PciBitFieldAndThenOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
1048 PciBitFieldRead32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1083 PciBitFieldWrite32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
1125 PciBitFieldOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
1167 PciBitFieldAnd32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
1212 PciBitFieldAndThenOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiPciLibPciRootBridgeIo/
H A DPciLib.c327 specified by the StartBit and the EndBit. The value of the bit field is
331 If StartBit is greater than 7, then ASSERT().
333 If EndBit is less than StartBit, then ASSERT().
336 @param StartBit The ordinal of the least significant bit in the bit field.
348 IN UINTN StartBit,
352 return BitFieldRead8 (PciRead8 (Address), StartBit, EndBit);
359 field is specified by the StartBit and the EndBit. All other bits in the
364 If StartBit is greater than 7, then ASSERT().
366 If EndBit is less than StartBit, then ASSERT().
369 @param StartBit Th
346 PciBitFieldRead8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
380 PciBitFieldWrite8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
421 PciBitFieldOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
462 PciBitFieldAnd8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
506 PciBitFieldAndThenOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
696 PciBitFieldRead16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
731 PciBitFieldWrite16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
773 PciBitFieldOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
815 PciBitFieldAnd16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
860 PciBitFieldAndThenOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
1050 PciBitFieldRead32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1085 PciBitFieldWrite32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
1127 PciBitFieldOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
1169 PciBitFieldAnd32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
1214 PciBitFieldAndThenOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiPciSegmentLibPciRootBridgeIo/
H A DPciSegmentLib.c409 specified by the StartBit and the EndBit. The value of the bit field is
413 If StartBit is greater than 7, then ASSERT().
415 If EndBit is less than StartBit, then ASSERT().
418 @param StartBit The ordinal of the least significant bit in the bit field.
430 IN UINTN StartBit,
434 return BitFieldRead8 (PciSegmentRead8 (Address), StartBit, EndBit);
441 field is specified by the StartBit and the EndBit. All other bits in the
446 If StartBit is greater than 7, then ASSERT().
448 If EndBit is less than StartBit, then ASSERT().
451 @param StartBit Th
428 PciSegmentBitFieldRead8( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit ) argument
462 PciSegmentBitFieldWrite8( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
503 PciSegmentBitFieldOr8( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
544 PciSegmentBitFieldAnd8( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
588 PciSegmentBitFieldAndThenOr8( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
769 PciSegmentBitFieldRead16( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit ) argument
804 PciSegmentBitFieldWrite16( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
840 PciSegmentBitFieldOr16( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
882 PciSegmentBitFieldAnd16( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
926 PciSegmentBitFieldAndThenOr16( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
1104 PciSegmentBitFieldRead32( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1139 PciSegmentBitFieldWrite32( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
1180 PciSegmentBitFieldOr32( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
1222 PciSegmentBitFieldAnd32( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
1266 PciSegmentBitFieldAndThenOr32( IN UINT64 Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkPkg/Library/DxeIoLibCpuIo/
H A DIoHighLevel.c120 the StartBit and the EndBit. The value of the bit field is returned.
123 If StartBit is greater than 7, then ASSERT().
125 If EndBit is less than StartBit, then ASSERT().
128 @param StartBit The ordinal of the least significant bit in the bit field.
140 IN UINTN StartBit,
144 return BitFieldRead8 (IoRead8 (Port), StartBit, EndBit);
151 by the StartBit and the EndBit. All other bits in the destination I/O
156 If StartBit is greater than 7, then ASSERT().
158 If EndBit is less than StartBit, then ASSERT().
161 @param StartBit Th
138 IoBitFieldRead8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
172 IoBitFieldWrite8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
212 IoBitFieldOr8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
252 IoBitFieldAnd8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
295 IoBitFieldAndThenOr8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
418 IoBitFieldRead16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
452 IoBitFieldWrite16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
492 IoBitFieldOr16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
532 IoBitFieldAnd16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
575 IoBitFieldAndThenOr16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
698 IoBitFieldRead32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
732 IoBitFieldWrite32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
772 IoBitFieldOr32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
812 IoBitFieldAnd32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
855 IoBitFieldAndThenOr32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
978 IoBitFieldRead64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
1012 IoBitFieldWrite64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 Value ) argument
1052 IoBitFieldOr64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 OrData ) argument
1092 IoBitFieldAnd64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData ) argument
1135 IoBitFieldAndThenOr64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData, IN UINT64 OrData ) argument
1259 MmioBitFieldRead8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1292 MmioBitFieldWrite8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
1333 MmioBitFieldOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
1374 MmioBitFieldAnd8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
1417 MmioBitFieldAndThenOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
1541 MmioBitFieldRead16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1574 MmioBitFieldWrite16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
1615 MmioBitFieldOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
1656 MmioBitFieldAnd16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
1699 MmioBitFieldAndThenOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
1823 MmioBitFieldRead32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1856 MmioBitFieldWrite32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
1897 MmioBitFieldOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
1938 MmioBitFieldAnd32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
1981 MmioBitFieldAndThenOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
2105 MmioBitFieldRead64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
2138 MmioBitFieldWrite64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 Value ) argument
2179 MmioBitFieldOr64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 OrData ) argument
2220 MmioBitFieldAnd64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData ) argument
2263 MmioBitFieldAndThenOr64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData, IN UINT64 OrData ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseIoLibIntrinsic/
H A DIoHighLevel.c117 the StartBit and the EndBit. The value of the bit field is returned.
120 If StartBit is greater than 7, then ASSERT().
122 If EndBit is less than StartBit, then ASSERT().
125 @param StartBit The ordinal of the least significant bit in the bit field.
137 IN UINTN StartBit,
141 return BitFieldRead8 (IoRead8 (Port), StartBit, EndBit);
148 by the StartBit and the EndBit. All other bits in the destination I/O
152 If StartBit is greater than 7, then ASSERT().
154 If EndBit is less than StartBit, then ASSERT().
157 @param StartBit Th
135 IoBitFieldRead8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
168 IoBitFieldWrite8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
208 IoBitFieldOr8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
248 IoBitFieldAnd8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
291 IoBitFieldAndThenOr8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
418 IoBitFieldRead16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
453 IoBitFieldWrite16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
494 IoBitFieldOr16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
535 IoBitFieldAnd16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
579 IoBitFieldAndThenOr16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
706 IoBitFieldRead32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
741 IoBitFieldWrite32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
782 IoBitFieldOr32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
823 IoBitFieldAnd32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
867 IoBitFieldAndThenOr32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
994 IoBitFieldRead64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
1029 IoBitFieldWrite64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 Value ) argument
1070 IoBitFieldOr64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 OrData ) argument
1111 IoBitFieldAnd64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData ) argument
1155 IoBitFieldAndThenOr64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData, IN UINT64 OrData ) argument
1279 MmioBitFieldRead8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1312 MmioBitFieldWrite8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
1353 MmioBitFieldOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
1394 MmioBitFieldAnd8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
1437 MmioBitFieldAndThenOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
1564 MmioBitFieldRead16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1598 MmioBitFieldWrite16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
1640 MmioBitFieldOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
1682 MmioBitFieldAnd16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
1726 MmioBitFieldAndThenOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
1853 MmioBitFieldRead32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1887 MmioBitFieldWrite32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
1929 MmioBitFieldOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
1971 MmioBitFieldAnd32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
2015 MmioBitFieldAndThenOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
2142 MmioBitFieldRead64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
2176 MmioBitFieldWrite64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 Value ) argument
2218 MmioBitFieldOr64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 OrData ) argument
2260 MmioBitFieldAnd64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData ) argument
2304 MmioBitFieldAndThenOr64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData, IN UINT64 OrData ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxeIoLibCpuIo2/
H A DIoHighLevel.c112 the StartBit and the EndBit. The value of the bit field is returned.
115 If StartBit is greater than 7, then ASSERT().
117 If EndBit is less than StartBit, then ASSERT().
120 @param StartBit The ordinal of the least significant bit in the bit field.
132 IN UINTN StartBit,
136 return BitFieldRead8 (IoRead8 (Port), StartBit, EndBit);
143 by the StartBit and the EndBit. All other bits in the destination I/O
148 If StartBit is greater than 7, then ASSERT().
150 If EndBit is less than StartBit, then ASSERT().
153 @param StartBit Th
130 IoBitFieldRead8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
164 IoBitFieldWrite8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
204 IoBitFieldOr8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
244 IoBitFieldAnd8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
287 IoBitFieldAndThenOr8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
410 IoBitFieldRead16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
444 IoBitFieldWrite16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
484 IoBitFieldOr16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
524 IoBitFieldAnd16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
567 IoBitFieldAndThenOr16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
690 IoBitFieldRead32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
724 IoBitFieldWrite32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
764 IoBitFieldOr32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
804 IoBitFieldAnd32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
847 IoBitFieldAndThenOr32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
970 IoBitFieldRead64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
1004 IoBitFieldWrite64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 Value ) argument
1044 IoBitFieldOr64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 OrData ) argument
1084 IoBitFieldAnd64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData ) argument
1127 IoBitFieldAndThenOr64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData, IN UINT64 OrData ) argument
1251 MmioBitFieldRead8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1284 MmioBitFieldWrite8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
1325 MmioBitFieldOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
1366 MmioBitFieldAnd8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
1409 MmioBitFieldAndThenOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
1533 MmioBitFieldRead16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1566 MmioBitFieldWrite16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
1607 MmioBitFieldOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
1648 MmioBitFieldAnd16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
1691 MmioBitFieldAndThenOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
1815 MmioBitFieldRead32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1848 MmioBitFieldWrite32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
1889 MmioBitFieldOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
1930 MmioBitFieldAnd32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
1973 MmioBitFieldAndThenOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
2097 MmioBitFieldRead64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
2130 MmioBitFieldWrite64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 Value ) argument
2171 MmioBitFieldOr64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 OrData ) argument
2212 MmioBitFieldAnd64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData ) argument
2255 MmioBitFieldAndThenOr64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData, IN UINT64 OrData ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxeIoLibEsal/
H A DIoHighLevel.c108 the StartBit and the EndBit. The value of the bit field is returned.
111 If StartBit is greater than 7, then ASSERT().
113 If EndBit is less than StartBit, then ASSERT().
116 @param StartBit The ordinal of the least significant bit in the bit field.
128 IN UINTN StartBit,
132 return BitFieldRead8 (IoRead8 (Port), StartBit, EndBit);
139 by the StartBit and the EndBit. All other bits in the destination I/O
144 If StartBit is greater than 7, then ASSERT().
146 If EndBit is less than StartBit, then ASSERT().
149 @param StartBit Th
126 IoBitFieldRead8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
160 IoBitFieldWrite8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
200 IoBitFieldOr8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
240 IoBitFieldAnd8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
283 IoBitFieldAndThenOr8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
406 IoBitFieldRead16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
440 IoBitFieldWrite16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
480 IoBitFieldOr16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
520 IoBitFieldAnd16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
563 IoBitFieldAndThenOr16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
686 IoBitFieldRead32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
720 IoBitFieldWrite32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
760 IoBitFieldOr32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
800 IoBitFieldAnd32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
843 IoBitFieldAndThenOr32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
966 IoBitFieldRead64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
1000 IoBitFieldWrite64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 Value ) argument
1040 IoBitFieldOr64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 OrData ) argument
1080 IoBitFieldAnd64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData ) argument
1123 IoBitFieldAndThenOr64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData, IN UINT64 OrData ) argument
1247 MmioBitFieldRead8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1280 MmioBitFieldWrite8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
1321 MmioBitFieldOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
1362 MmioBitFieldAnd8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
1405 MmioBitFieldAndThenOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
1529 MmioBitFieldRead16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1562 MmioBitFieldWrite16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
1603 MmioBitFieldOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
1644 MmioBitFieldAnd16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
1687 MmioBitFieldAndThenOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
1811 MmioBitFieldRead32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1844 MmioBitFieldWrite32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
1885 MmioBitFieldOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
1926 MmioBitFieldAnd32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
1969 MmioBitFieldAndThenOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
2093 MmioBitFieldRead64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
2126 MmioBitFieldWrite64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 Value ) argument
2167 MmioBitFieldOr64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 OrData ) argument
2208 MmioBitFieldAnd64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData ) argument
2251 MmioBitFieldAndThenOr64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData, IN UINT64 OrData ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/PeiIoLibCpuIo/
H A DIoHighLevel.c117 the StartBit and the EndBit. The value of the bit field is returned.
120 If StartBit is greater than 7, then ASSERT().
122 If EndBit is less than StartBit, then ASSERT().
125 @param StartBit The ordinal of the least significant bit in the bit field.
137 IN UINTN StartBit,
141 return BitFieldRead8 (IoRead8 (Port), StartBit, EndBit);
148 by the StartBit and the EndBit. All other bits in the destination I/O
152 If StartBit is greater than 7, then ASSERT().
154 If EndBit is less than StartBit, then ASSERT().
157 @param StartBit Th
135 IoBitFieldRead8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
168 IoBitFieldWrite8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
208 IoBitFieldOr8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
248 IoBitFieldAnd8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
291 IoBitFieldAndThenOr8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
418 IoBitFieldRead16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
453 IoBitFieldWrite16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
494 IoBitFieldOr16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
535 IoBitFieldAnd16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
579 IoBitFieldAndThenOr16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
706 IoBitFieldRead32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
741 IoBitFieldWrite32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
782 IoBitFieldOr32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
823 IoBitFieldAnd32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
867 IoBitFieldAndThenOr32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
994 IoBitFieldRead64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
1029 IoBitFieldWrite64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 Value ) argument
1070 IoBitFieldOr64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 OrData ) argument
1111 IoBitFieldAnd64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData ) argument
1155 IoBitFieldAndThenOr64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData, IN UINT64 OrData ) argument
1279 MmioBitFieldRead8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1312 MmioBitFieldWrite8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
1353 MmioBitFieldOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
1394 MmioBitFieldAnd8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
1437 MmioBitFieldAndThenOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
1564 MmioBitFieldRead16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1598 MmioBitFieldWrite16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
1640 MmioBitFieldOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
1682 MmioBitFieldAnd16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
1726 MmioBitFieldAndThenOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
1853 MmioBitFieldRead32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1887 MmioBitFieldWrite32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
1929 MmioBitFieldOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
1971 MmioBitFieldAnd32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
2015 MmioBitFieldAndThenOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
2142 MmioBitFieldRead64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
2176 MmioBitFieldWrite64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 Value ) argument
2218 MmioBitFieldOr64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 OrData ) argument
2260 MmioBitFieldAnd64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData ) argument
2304 MmioBitFieldAndThenOr64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData, IN UINT64 OrData ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/SmmIoLibSmmCpuIo2/
H A DIoHighLevel.c117 the StartBit and the EndBit. The value of the bit field is returned.
120 If StartBit is greater than 7, then ASSERT().
122 If EndBit is less than StartBit, then ASSERT().
125 @param StartBit The ordinal of the least significant bit in the bit field.
137 IN UINTN StartBit,
141 return BitFieldRead8 (IoRead8 (Port), StartBit, EndBit);
148 by the StartBit and the EndBit. All other bits in the destination I/O
153 If StartBit is greater than 7, then ASSERT().
155 If EndBit is less than StartBit, then ASSERT().
158 @param StartBit Th
135 IoBitFieldRead8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
169 IoBitFieldWrite8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
209 IoBitFieldOr8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
249 IoBitFieldAnd8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
292 IoBitFieldAndThenOr8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
415 IoBitFieldRead16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
449 IoBitFieldWrite16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
489 IoBitFieldOr16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
529 IoBitFieldAnd16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
572 IoBitFieldAndThenOr16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
695 IoBitFieldRead32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
729 IoBitFieldWrite32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
769 IoBitFieldOr32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
809 IoBitFieldAnd32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
852 IoBitFieldAndThenOr32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
975 IoBitFieldRead64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
1009 IoBitFieldWrite64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 Value ) argument
1049 IoBitFieldOr64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 OrData ) argument
1089 IoBitFieldAnd64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData ) argument
1132 IoBitFieldAndThenOr64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData, IN UINT64 OrData ) argument
1256 MmioBitFieldRead8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1289 MmioBitFieldWrite8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
1330 MmioBitFieldOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
1371 MmioBitFieldAnd8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
1414 MmioBitFieldAndThenOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
1538 MmioBitFieldRead16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1571 MmioBitFieldWrite16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
1612 MmioBitFieldOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
1653 MmioBitFieldAnd16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
1696 MmioBitFieldAndThenOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
1820 MmioBitFieldRead32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1853 MmioBitFieldWrite32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
1894 MmioBitFieldOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
1935 MmioBitFieldAnd32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
1978 MmioBitFieldAndThenOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
2102 MmioBitFieldRead64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
2135 MmioBitFieldWrite64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 Value ) argument
2176 MmioBitFieldOr64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 OrData ) argument
2217 MmioBitFieldAnd64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData ) argument
2260 MmioBitFieldAndThenOr64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData, IN UINT64 OrData ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseS3IoLib/
H A DS3IoLib.c227 the StartBit and the EndBit. The value of the bit field is returned.
230 If StartBit is greater than 7, then ASSERT().
232 If EndBit is less than StartBit, then ASSERT().
235 @param StartBit The ordinal of the least significant bit in the bit field.
247 IN UINTN StartBit,
251 return InternalSaveIoWrite8ValueToBootScript (Port, IoBitFieldRead8 (Port, StartBit, EndBit));
259 by the StartBit and the EndBit. All other bits in the destination I/O
264 If StartBit is greater than 7, then ASSERT().
266 If EndBit is less than StartBit, then ASSERT().
269 @param StartBit Th
245 S3IoBitFieldRead8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
280 S3IoBitFieldWrite8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
318 S3IoBitFieldOr8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
356 S3IoBitFieldAnd8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
396 S3IoBitFieldAndThenOr8( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
595 S3IoBitFieldRead16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
630 S3IoBitFieldWrite16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
668 S3IoBitFieldOr16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
706 S3IoBitFieldAnd16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
747 S3IoBitFieldAndThenOr16( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
946 S3IoBitFieldRead32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
981 S3IoBitFieldWrite32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
1019 S3IoBitFieldOr32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
1057 S3IoBitFieldAnd32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
1098 S3IoBitFieldAndThenOr32( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
1297 S3IoBitFieldRead64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit ) argument
1332 S3IoBitFieldWrite64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 Value ) argument
1370 S3IoBitFieldOr64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 OrData ) argument
1408 S3IoBitFieldAnd64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData ) argument
1449 S3IoBitFieldAndThenOr64( IN UINTN Port, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData, IN UINT64 OrData ) argument
1679 S3MmioBitFieldRead8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
1713 S3MmioBitFieldWrite8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 Value ) argument
1752 S3MmioBitFieldOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 OrData ) argument
1791 S3MmioBitFieldAnd8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData ) argument
1832 S3MmioBitFieldAndThenOr8( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT8 AndData, IN UINT8 OrData ) argument
2032 S3MmioBitFieldRead16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
2066 S3MmioBitFieldWrite16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 Value ) argument
2105 S3MmioBitFieldOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 OrData ) argument
2144 S3MmioBitFieldAnd16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData ) argument
2185 S3MmioBitFieldAndThenOr16( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT16 AndData, IN UINT16 OrData ) argument
2384 S3MmioBitFieldRead32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
2418 S3MmioBitFieldWrite32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 Value ) argument
2457 S3MmioBitFieldOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 OrData ) argument
2496 S3MmioBitFieldAnd32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData ) argument
2537 S3MmioBitFieldAndThenOr32( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT32 AndData, IN UINT32 OrData ) argument
2736 S3MmioBitFieldRead64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit ) argument
2770 S3MmioBitFieldWrite64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 Value ) argument
2809 S3MmioBitFieldOr64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 OrData ) argument
2848 S3MmioBitFieldAnd64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData ) argument
2889 S3MmioBitFieldAndThenOr64( IN UINTN Address, IN UINTN StartBit, IN UINTN EndBit, IN UINT64 AndData, IN UINT64 OrData ) argument
[all...]

Completed in 95 milliseconds