Searched defs:EndBit (Results 1 - 22 of 22) 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
170 If EndBit is greater than 31, then ASSERT().
171 If EndBit is less than StartBit, then ASSERT().
176 @param EndBit The ordinal of the most significant bit in the bit field.
187 IN UINTN EndBit
190 return BitFieldRead32 (AsmReadMsr32 (Index), StartBit, EndBit);
197 field is specified by the StartBit and the EndBit. All other bits in the
204 If EndBit is greater than 31, then ASSERT().
205 If EndBit is less than StartBit, then ASSERT().
210 @param EndBit Th
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
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.
24 @param EndBit The ordinal of the most significant bit in the bit field.
34 IN UINTN EndBit
38 // ~((UINTN)-2 << EndBit) is a mask in which bit[0] thru bit[EndBit]
39 // are 1's while bit[EndBit + 1] thru the most significant bit are 0's.
41 return (Operand & ~((UINTN)-2 << EndBit)) >> StartBit;
48 Performs a bitwise OR between the bit field specified by StartBit and EndBit
54 @param EndBit The ordinal of the most significant bit in the bit field.
65 IN UINTN EndBit,
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
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
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
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
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/MdePkg/Library/BasePciLibCf8/
H A DPciLib.c199 specified by the StartBit and the EndBit. The value of the bit field is
204 If EndBit is greater than 7, then ASSERT().
205 If EndBit is less than StartBit, then ASSERT().
210 @param EndBit The ordinal of the most significant bit in the bit field.
221 IN UINTN EndBit
224 return PciCf8BitFieldRead8 (Address, StartBit, EndBit);
231 field is specified by the StartBit and the EndBit. All other bits in the
237 If EndBit is greater than 7, then ASSERT().
238 If EndBit is less than StartBit, then ASSERT().
243 @param EndBit Th
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
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
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
204 If EndBit is greater than 7, then ASSERT().
205 If EndBit is less than StartBit, then ASSERT().
210 @param EndBit The ordinal of the most significant bit in the bit field.
221 IN UINTN EndBit
224 return PciExpressBitFieldRead8 (Address, StartBit, EndBit);
231 field is specified by the StartBit and the EndBit. All other bits in the
237 If EndBit is greater than 7, then ASSERT().
238 If EndBit is less than StartBit, then ASSERT().
243 @param EndBit Th
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
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
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
321 If EndBit is greater than 7, then ASSERT().
322 If EndBit is less than StartBit, then ASSERT().
327 @param EndBit The ordinal of the most significant bit in the bit field.
338 IN UINTN EndBit
352 EndBit
363 field is specified by the StartBit and the EndBit. All other bits in the
370 If EndBit is greater than 7, then ASSERT().
371 If EndBit is less than StartBit, then ASSERT().
376 @param EndBit Th
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
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
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
249 If EndBit is greater than 7, then ASSERT().
250 If EndBit is less than StartBit, then ASSERT().
255 @param EndBit The ordinal of the most significant bit in the bit field.
266 IN UINTN EndBit
273 EndBit
281 field is specified by the StartBit and the EndBit. All other bits in the
287 If EndBit is greater than 7, then ASSERT().
288 If EndBit is less than StartBit, then ASSERT().
293 @param EndBit Th
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
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
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
244 If EndBit is greater than 7, then ASSERT().
245 If EndBit is less than StartBit, then ASSERT().
250 @param EndBit The ordinal of the most significant bit in the bit field.
261 IN UINTN EndBit
264 return InternalSavePciWrite8ValueToBootScript (Address, PciBitFieldRead8 (Address, StartBit, EndBit));
272 field is specified by the StartBit and the EndBit. All other bits in the
278 If EndBit is greater than 7, then ASSERT().
279 If EndBit is less than StartBit, then ASSERT().
284 @param EndBit Th
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
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
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
360 If EndBit is greater than 7, then ASSERT().
361 If EndBit is less than StartBit, then ASSERT().
366 @param EndBit The ordinal of the most significant bit in the bit field.
377 IN UINTN EndBit
380 return BitFieldRead8 (PciRead8 (Address), StartBit, EndBit);
387 field is specified by the StartBit and the EndBit. All other bits in the
393 If EndBit is greater than 7, then ASSERT().
394 If EndBit is less than StartBit, then ASSERT().
399 @param EndBit Th
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
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
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
332 If EndBit is greater than 7, then ASSERT().
333 If EndBit is less than StartBit, then ASSERT().
338 @param EndBit The ordinal of the most significant bit in the bit field.
349 IN UINTN EndBit
352 return BitFieldRead8 (PciSegmentRead8 (Address), StartBit, EndBit);
359 field is specified by the StartBit and the EndBit. All other bits in the
365 If EndBit is greater than 7, then ASSERT().
366 If EndBit is less than StartBit, then ASSERT().
371 @param EndBit Th
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
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
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
509 If EndBit is greater than 7, then ASSERT().
510 If EndBit is less than StartBit, then ASSERT().
515 @param EndBit The ordinal of the most significant bit in the bit field.
526 IN UINTN EndBit
532 EndBit
540 field is specified by the StartBit and the EndBit. All other bits in the
546 If EndBit is greater than 7, then ASSERT().
547 If EndBit is less than StartBit, then ASSERT().
552 @param EndBit Th
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
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
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
318 If EndBit is greater than 7, then ASSERT().
319 If EndBit is less than StartBit, then ASSERT().
324 @param EndBit The ordinal of the most significant bit in the bit field.
335 IN UINTN EndBit
338 return BitFieldRead8 (PciRead8 (Address), StartBit, EndBit);
345 field is specified by the StartBit and the EndBit. All other bits in the
351 If EndBit is greater than 7, then ASSERT().
352 If EndBit is less than StartBit, then ASSERT().
357 @param EndBit Th
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
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
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
337 If EndBit is greater than 7, then ASSERT().
338 If EndBit is less than StartBit, then ASSERT().
343 @param EndBit The ordinal of the most significant bit in the bit field.
354 IN UINTN EndBit
357 return BitFieldRead8 (PciSegmentRead8 (Address), StartBit, EndBit);
364 field is specified by the StartBit and the EndBit. All other bits in the
370 If EndBit is greater than 7, then ASSERT().
371 If EndBit is less than StartBit, then ASSERT().
376 @param EndBit Th
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
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
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
330 If EndBit is greater than 7, then ASSERT().
331 If EndBit is less than StartBit, then ASSERT().
336 @param EndBit The ordinal of the most significant bit in the bit field.
347 IN UINTN EndBit
350 return BitFieldRead8 (PciRead8 (Address), StartBit, EndBit);
357 field is specified by the StartBit and the EndBit. All other bits in the
363 If EndBit is greater than 7, then ASSERT().
364 If EndBit is less than StartBit, then ASSERT().
369 @param EndBit Th
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
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
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
332 If EndBit is greater than 7, then ASSERT().
333 If EndBit is less than StartBit, then ASSERT().
338 @param EndBit The ordinal of the most significant bit in the bit field.
349 IN UINTN EndBit
352 return BitFieldRead8 (PciRead8 (Address), StartBit, EndBit);
359 field is specified by the StartBit and the EndBit. All other bits in the
365 If EndBit is greater than 7, then ASSERT().
366 If EndBit is less than StartBit, then ASSERT().
371 @param EndBit Th
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
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
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
414 If EndBit is greater than 7, then ASSERT().
415 If EndBit is less than StartBit, then ASSERT().
420 @param EndBit The ordinal of the most significant bit in the bit field.
431 IN UINTN EndBit
434 return BitFieldRead8 (PciSegmentRead8 (Address), StartBit, EndBit);
441 field is specified by the StartBit and the EndBit. All other bits in the
447 If EndBit is greater than 7, then ASSERT().
448 If EndBit is less than StartBit, then ASSERT().
453 @param EndBit Th
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
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
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.
124 If EndBit is greater than 7, then ASSERT().
125 If EndBit is less than StartBit, then ASSERT().
130 @param EndBit The ordinal of the most significant bit in the bit field.
141 IN UINTN EndBit
144 return BitFieldRead8 (IoRead8 (Port), StartBit, EndBit);
151 by the StartBit and the EndBit. All other bits in the destination I/O
157 If EndBit is greater than 7, then ASSERT().
158 If EndBit is less than StartBit, then ASSERT().
163 @param EndBit Th
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
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
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
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
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
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
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
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.
121 If EndBit is greater than 7, then ASSERT().
122 If EndBit is less than StartBit, then ASSERT().
127 @param EndBit The ordinal of the most significant bit in the bit field.
138 IN UINTN EndBit
141 return BitFieldRead8 (IoRead8 (Port), StartBit, EndBit);
148 by the StartBit and the EndBit. All other bits in the destination I/O
153 If EndBit is greater than 7, then ASSERT().
154 If EndBit is less than StartBit, then ASSERT().
159 @param EndBit Th
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
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
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
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
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
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
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
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.
116 If EndBit is greater than 7, then ASSERT().
117 If EndBit is less than StartBit, then ASSERT().
122 @param EndBit The ordinal of the most significant bit in the bit field.
133 IN UINTN EndBit
136 return BitFieldRead8 (IoRead8 (Port), StartBit, EndBit);
143 by the StartBit and the EndBit. All other bits in the destination I/O
149 If EndBit is greater than 7, then ASSERT().
150 If EndBit is less than StartBit, then ASSERT().
155 @param EndBit Th
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
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
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
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
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
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
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
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.
112 If EndBit is greater than 7, then ASSERT().
113 If EndBit is less than StartBit, then ASSERT().
118 @param EndBit The ordinal of the most significant bit in the bit field.
129 IN UINTN EndBit
132 return BitFieldRead8 (IoRead8 (Port), StartBit, EndBit);
139 by the StartBit and the EndBit. All other bits in the destination I/O
145 If EndBit is greater than 7, then ASSERT().
146 If EndBit is less than StartBit, then ASSERT().
151 @param EndBit Th
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
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
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
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
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
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
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
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.
121 If EndBit is greater than 7, then ASSERT().
122 If EndBit is less than StartBit, then ASSERT().
127 @param EndBit The ordinal of the most significant bit in the bit field.
138 IN UINTN EndBit
141 return BitFieldRead8 (IoRead8 (Port), StartBit, EndBit);
148 by the StartBit and the EndBit. All other bits in the destination I/O
153 If EndBit is greater than 7, then ASSERT().
154 If EndBit is less than StartBit, then ASSERT().
159 @param EndBit Th
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
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
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
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
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
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
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
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.
121 If EndBit is greater than 7, then ASSERT().
122 If EndBit is less than StartBit, then ASSERT().
127 @param EndBit The ordinal of the most significant bit in the bit field.
138 IN UINTN EndBit
141 return BitFieldRead8 (IoRead8 (Port), StartBit, EndBit);
148 by the StartBit and the EndBit. All other bits in the destination I/O
154 If EndBit is greater than 7, then ASSERT().
155 If EndBit is less than StartBit, then ASSERT().
160 @param EndBit Th
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
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
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
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
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
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
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
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.
231 If EndBit is greater than 7, then ASSERT().
232 If EndBit is less than StartBit, then ASSERT().
237 @param EndBit The ordinal of the most significant bit in the bit field.
248 IN UINTN EndBit
251 return InternalSaveIoWrite8ValueToBootScript (Port, IoBitFieldRead8 (Port, StartBit, EndBit));
259 by the StartBit and the EndBit. All other bits in the destination I/O
265 If EndBit is greater than 7, then ASSERT().
266 If EndBit is less than StartBit, then ASSERT().
271 @param EndBit Th
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
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
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
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
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
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
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
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 69 milliseconds