Lines Matching refs:StartBit

332   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 The ordinal of the least significant bit in the bit field.
387 IN UINTN StartBit,
394 BitFieldWrite8 (PciSegmentRead8 (Address), StartBit, EndBit, Value)
410 If StartBit is greater than 7, then ASSERT().
412 If EndBit is less than StartBit, then ASSERT().
415 @param StartBit The ordinal of the least significant bit in the bit field.
428 IN UINTN StartBit,
435 BitFieldOr8 (PciSegmentRead8 (Address), StartBit, EndBit, OrData)
451 If StartBit is greater than 7, then ASSERT().
453 If EndBit is less than StartBit, then ASSERT().
456 @param StartBit The ordinal of the least significant bit in the bit field.
469 IN UINTN StartBit,
476 BitFieldAnd8 (PciSegmentRead8 (Address), StartBit, EndBit, AndData)
494 If StartBit is greater than 7, then ASSERT().
496 If EndBit is less than StartBit, then ASSERT().
499 @param StartBit The ordinal of the least significant bit in the bit field.
513 IN UINTN StartBit,
521 BitFieldAndThenOr8 (PciSegmentRead8 (Address), StartBit, EndBit, AndData, OrData)
672 specified by the StartBit and the EndBit. The value of the bit field is
677 If StartBit is greater than 15, then ASSERT().
679 If EndBit is less than StartBit, then ASSERT().
682 @param StartBit The ordinal of the least significant bit in the bit field.
694 IN UINTN StartBit,
698 return BitFieldRead16 (PciSegmentRead16 (Address), StartBit, EndBit);
705 field is specified by the StartBit and the EndBit. All other bits in the
711 If StartBit is greater than 15, then ASSERT().
713 If EndBit is less than StartBit, then ASSERT().
716 @param StartBit The ordinal of the least significant bit in the bit field.
729 IN UINTN StartBit,
736 BitFieldWrite16 (PciSegmentRead16 (Address), StartBit, EndBit, Value)
747 If StartBit is greater than 15, then ASSERT().
749 If EndBit is less than StartBit, then ASSERT().
752 @param StartBit The ordinal of the least significant bit in the bit field.
765 IN UINTN StartBit,
772 BitFieldOr16 (PciSegmentRead16 (Address), StartBit, EndBit, OrData)
789 If StartBit is greater than 7, then ASSERT().
791 If EndBit is less than StartBit, then ASSERT().
794 @param StartBit The ordinal of the least significant bit in the bit field.
807 IN UINTN StartBit,
814 BitFieldAnd16 (PciSegmentRead16 (Address), StartBit, EndBit, AndData)
832 If StartBit is greater than 15, then ASSERT().
834 If EndBit is less than StartBit, then ASSERT().
837 @param StartBit The ordinal of the least significant bit in the bit field.
851 IN UINTN StartBit,
859 BitFieldAndThenOr16 (PciSegmentRead16 (Address), StartBit, EndBit, AndData, OrData)
1011 specified by the StartBit and the EndBit. The value of the bit field is
1016 If StartBit is greater than 31, then ASSERT().
1018 If EndBit is less than StartBit, then ASSERT().
1021 @param StartBit The ordinal of the least significant bit in the bit field.
1033 IN UINTN StartBit,
1037 return BitFieldRead32 (PciSegmentRead32 (Address), StartBit, EndBit);
1044 field is specified by the StartBit and the EndBit. All other bits in the
1050 If StartBit is greater than 31, then ASSERT().
1052 If EndBit is less than StartBit, then ASSERT().
1055 @param StartBit The ordinal of the least significant bit in the bit field.
1068 IN UINTN StartBit,
1075 BitFieldWrite32 (PciSegmentRead32 (Address), StartBit, EndBit, Value)
1091 If StartBit is greater than 31, then ASSERT().
1093 If EndBit is less than StartBit, then ASSERT().
1096 @param StartBit The ordinal of the least significant bit in the bit field.
1109 IN UINTN StartBit,
1116 BitFieldOr32 (PciSegmentRead32 (Address), StartBit, EndBit, OrData)
1132 If StartBit is greater than 31, then ASSERT().
1134 If EndBit is less than StartBit, then ASSERT().
1138 @param StartBit The ordinal of the least significant bit in the bit field.
1151 IN UINTN StartBit,
1158 BitFieldAnd32 (PciSegmentRead32 (Address), StartBit, EndBit, AndData)
1176 If StartBit is greater than 31, then ASSERT().
1178 If EndBit is less than StartBit, then ASSERT().
1181 @param StartBit The ordinal of the least significant bit in the bit field.
1195 IN UINTN StartBit,
1203 BitFieldAndThenOr32 (PciSegmentRead32 (Address), StartBit, EndBit, AndData, OrData)