Lines Matching defs:EndBit

325   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 The ordinal of the most significant bit in the bit field.
381 IN UINTN EndBit,
387 BitFieldWrite8 (PciRead8 (Address), StartBit, EndBit, Value)
404 If EndBit is greater than 7, then ASSERT().
405 If EndBit is less than StartBit, then ASSERT().
410 @param EndBit The ordinal of the most significant bit in the bit field.
422 IN UINTN EndBit,
428 BitFieldOr8 (PciRead8 (Address), StartBit, EndBit, OrData)
445 If EndBit is greater than 7, then ASSERT().
446 If EndBit is less than StartBit, then ASSERT().
451 @param EndBit The ordinal of the most significant bit in the bit field.
463 IN UINTN EndBit,
469 BitFieldAnd8 (PciRead8 (Address), StartBit, EndBit, AndData)
488 If EndBit is greater than 7, then ASSERT().
489 If EndBit is less than StartBit, then ASSERT().
494 @param EndBit The ordinal of the most significant bit in the bit field.
507 IN UINTN EndBit,
514 BitFieldAndThenOr8 (PciRead8 (Address), StartBit, EndBit, AndData, OrData)
674 specified by the StartBit and the EndBit. The value of the bit field is
680 If EndBit is greater than 15, then ASSERT().
681 If EndBit is less than StartBit, then ASSERT().
686 @param EndBit The ordinal of the most significant bit in the bit field.
697 IN UINTN EndBit
700 return BitFieldRead16 (PciRead16 (Address), StartBit, EndBit);
707 field is specified by the StartBit and the EndBit. All other bits in the
714 If EndBit is greater than 15, then ASSERT().
715 If EndBit is less than StartBit, then ASSERT().
720 @param EndBit The ordinal of the most significant bit in the bit field.
732 IN UINTN EndBit,
738 BitFieldWrite16 (PciRead16 (Address), StartBit, EndBit, Value)
756 If EndBit is greater than 15, then ASSERT().
757 If EndBit is less than StartBit, then ASSERT().
762 @param EndBit The ordinal of the most significant bit in the bit field.
774 IN UINTN EndBit,
780 BitFieldOr16 (PciRead16 (Address), StartBit, EndBit, OrData)
798 If EndBit is greater than 15, then ASSERT().
799 If EndBit is less than StartBit, then ASSERT().
804 @param EndBit The ordinal of the most significant bit in the bit field.
816 IN UINTN EndBit,
822 BitFieldAnd16 (PciRead16 (Address), StartBit, EndBit, AndData)
842 If EndBit is greater than 15, then ASSERT().
843 If EndBit is less than StartBit, then ASSERT().
848 @param EndBit The ordinal of the most significant bit in the bit field.
861 IN UINTN EndBit,
868 BitFieldAndThenOr16 (PciRead16 (Address), StartBit, EndBit, AndData, OrData)
1028 specified by the StartBit and the EndBit. The value of the bit field is
1034 If EndBit is greater than 31, then ASSERT().
1035 If EndBit is less than StartBit, then ASSERT().
1040 @param EndBit The ordinal of the most significant bit in the bit field.
1051 IN UINTN EndBit
1054 return BitFieldRead32 (PciRead32 (Address), StartBit, EndBit);
1061 field is specified by the StartBit and the EndBit. All other bits in the
1068 If EndBit is greater than 31, then ASSERT().
1069 If EndBit is less than StartBit, then ASSERT().
1074 @param EndBit The ordinal of the most significant bit in the bit field.
1086 IN UINTN EndBit,
1092 BitFieldWrite32 (PciRead32 (Address), StartBit, EndBit, Value)
1110 If EndBit is greater than 31, then ASSERT().
1111 If EndBit is less than StartBit, then ASSERT().
1116 @param EndBit The ordinal of the most significant bit in the bit field.
1128 IN UINTN EndBit,
1134 BitFieldOr32 (PciRead32 (Address), StartBit, EndBit, OrData)
1152 If EndBit is greater than 31, then ASSERT().
1153 If EndBit is less than StartBit, then ASSERT().
1158 @param EndBit The ordinal of the most significant bit in the bit field.
1170 IN UINTN EndBit,
1176 BitFieldAnd32 (PciRead32 (Address), StartBit, EndBit, AndData)
1196 If EndBit is greater than 31, then ASSERT().
1197 If EndBit is less than StartBit, then ASSERT().
1202 @param EndBit The ordinal of the most significant bit in the bit field.
1215 IN UINTN EndBit,
1222 BitFieldAndThenOr32 (PciRead32 (Address), StartBit, EndBit, AndData, OrData)