Lines Matching defs:EndBit

313   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 The ordinal of the most significant bit in the bit field.
369 IN UINTN EndBit,
375 BitFieldWrite8 (PciRead8 (Address), StartBit, EndBit, Value)
392 If EndBit is greater than 7, then ASSERT().
393 If EndBit is less than StartBit, then ASSERT().
398 @param EndBit The ordinal of the most significant bit in the bit field.
410 IN UINTN EndBit,
416 BitFieldOr8 (PciRead8 (Address), StartBit, EndBit, OrData)
433 If EndBit is greater than 7, then ASSERT().
434 If EndBit is less than StartBit, then ASSERT().
439 @param EndBit The ordinal of the most significant bit in the bit field.
451 IN UINTN EndBit,
457 BitFieldAnd8 (PciRead8 (Address), StartBit, EndBit, AndData)
476 If EndBit is greater than 7, then ASSERT().
477 If EndBit is less than StartBit, then ASSERT().
482 @param EndBit The ordinal of the most significant bit in the bit field.
495 IN UINTN EndBit,
502 BitFieldAndThenOr8 (PciRead8 (Address), StartBit, EndBit, AndData, OrData)
662 specified by the StartBit and the EndBit. The value of the bit field is
668 If EndBit is greater than 15, then ASSERT().
669 If EndBit is less than StartBit, then ASSERT().
674 @param EndBit The ordinal of the most significant bit in the bit field.
685 IN UINTN EndBit
688 return BitFieldRead16 (PciRead16 (Address), StartBit, EndBit);
695 field is specified by the StartBit and the EndBit. All other bits in the
702 If EndBit is greater than 15, then ASSERT().
703 If EndBit is less than StartBit, then ASSERT().
708 @param EndBit The ordinal of the most significant bit in the bit field.
720 IN UINTN EndBit,
726 BitFieldWrite16 (PciRead16 (Address), StartBit, EndBit, Value)
744 If EndBit is greater than 15, then ASSERT().
745 If EndBit is less than StartBit, then ASSERT().
750 @param EndBit The ordinal of the most significant bit in the bit field.
762 IN UINTN EndBit,
768 BitFieldOr16 (PciRead16 (Address), StartBit, EndBit, OrData)
786 If EndBit is greater than 15, then ASSERT().
787 If EndBit is less than StartBit, then ASSERT().
792 @param EndBit The ordinal of the most significant bit in the bit field.
804 IN UINTN EndBit,
810 BitFieldAnd16 (PciRead16 (Address), StartBit, EndBit, AndData)
830 If EndBit is greater than 15, then ASSERT().
831 If EndBit is less than StartBit, then ASSERT().
836 @param EndBit The ordinal of the most significant bit in the bit field.
849 IN UINTN EndBit,
856 BitFieldAndThenOr16 (PciRead16 (Address), StartBit, EndBit, AndData, OrData)
1016 specified by the StartBit and the EndBit. The value of the bit field is
1022 If EndBit is greater than 31, then ASSERT().
1023 If EndBit is less than StartBit, then ASSERT().
1028 @param EndBit The ordinal of the most significant bit in the bit field.
1039 IN UINTN EndBit
1042 return BitFieldRead32 (PciRead32 (Address), StartBit, EndBit);
1049 field is specified by the StartBit and the EndBit. All other bits in the
1056 If EndBit is greater than 31, then ASSERT().
1057 If EndBit is less than StartBit, then ASSERT().
1062 @param EndBit The ordinal of the most significant bit in the bit field.
1074 IN UINTN EndBit,
1080 BitFieldWrite32 (PciRead32 (Address), StartBit, EndBit, Value)
1098 If EndBit is greater than 31, then ASSERT().
1099 If EndBit is less than StartBit, then ASSERT().
1104 @param EndBit The ordinal of the most significant bit in the bit field.
1116 IN UINTN EndBit,
1122 BitFieldOr32 (PciRead32 (Address), StartBit, EndBit, OrData)
1140 If EndBit is greater than 31, then ASSERT().
1141 If EndBit is less than StartBit, then ASSERT().
1146 @param EndBit The ordinal of the most significant bit in the bit field.
1158 IN UINTN EndBit,
1164 BitFieldAnd32 (PciRead32 (Address), StartBit, EndBit, AndData)
1184 If EndBit is greater than 31, then ASSERT().
1185 If EndBit is less than StartBit, then ASSERT().
1190 @param EndBit The ordinal of the most significant bit in the bit field.
1203 IN UINTN EndBit,
1210 BitFieldAndThenOr32 (PciRead32 (Address), StartBit, EndBit, AndData, OrData)