Lines Matching defs:StartBit

327   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 The ordinal of the least significant bit in the bit field.
382 IN UINTN StartBit,
389 BitFieldWrite8 (PciSegmentRead8 (Address), StartBit, EndBit, Value)
405 If StartBit is greater than 7, then ASSERT().
407 If EndBit is less than StartBit, then ASSERT().
410 @param StartBit The ordinal of the least significant bit in the bit field.
423 IN UINTN StartBit,
430 BitFieldOr8 (PciSegmentRead8 (Address), StartBit, EndBit, OrData)
446 If StartBit is greater than 7, then ASSERT().
448 If EndBit is less than StartBit, then ASSERT().
451 @param StartBit The ordinal of the least significant bit in the bit field.
464 IN UINTN StartBit,
471 BitFieldAnd8 (PciSegmentRead8 (Address), StartBit, EndBit, AndData)
489 If StartBit is greater than 7, then ASSERT().
491 If EndBit is less than StartBit, then ASSERT().
494 @param StartBit The ordinal of the least significant bit in the bit field.
508 IN UINTN StartBit,
516 BitFieldAndThenOr8 (PciSegmentRead8 (Address), StartBit, EndBit, AndData, OrData)
671 specified by the StartBit and the EndBit. The value of the bit field is
675 If StartBit is greater than 15, then ASSERT().
677 If EndBit is less than StartBit, then ASSERT().
680 @param StartBit The ordinal of the least significant bit in the bit field.
692 IN UINTN StartBit,
696 return BitFieldRead16 (PciSegmentRead16 (Address), StartBit, EndBit);
703 field is specified by the StartBit and the EndBit. All other bits in the
708 If StartBit is greater than 15, then ASSERT().
710 If EndBit is less than StartBit, then ASSERT().
713 @param StartBit The ordinal of the least significant bit in the bit field.
726 IN UINTN StartBit,
733 BitFieldWrite16 (PciSegmentRead16 (Address), StartBit, EndBit, Value)
749 If StartBit is greater than 15, then ASSERT().
751 If EndBit is less than StartBit, then ASSERT().
754 @param StartBit The ordinal of the least significant bit in the bit field.
767 IN UINTN StartBit,
774 BitFieldOr16 (PciSegmentRead16 (Address), StartBit, EndBit, OrData)
790 If StartBit is greater than 15, then ASSERT().
792 If EndBit is less than StartBit, then ASSERT().
795 @param StartBit The ordinal of the least significant bit in the bit field.
808 IN UINTN StartBit,
815 BitFieldAnd16 (PciSegmentRead16 (Address), StartBit, EndBit, AndData)
833 If StartBit is greater than 15, then ASSERT().
835 If EndBit is less than StartBit, then ASSERT().
838 @param StartBit The ordinal of the least significant bit in the bit field.
852 IN UINTN StartBit,
860 BitFieldAndThenOr16 (PciSegmentRead16 (Address), StartBit, EndBit, AndData, OrData)
1015 specified by the StartBit and the EndBit. The value of the bit field is
1019 If StartBit is greater than 31, then ASSERT().
1021 If EndBit is less than StartBit, then ASSERT().
1024 @param StartBit The ordinal of the least significant bit in the bit field.
1036 IN UINTN StartBit,
1040 return BitFieldRead32 (PciSegmentRead32 (Address), StartBit, EndBit);
1047 field is specified by the StartBit and the EndBit. All other bits in the
1052 If StartBit is greater than 31, then ASSERT().
1054 If EndBit is less than StartBit, then ASSERT().
1057 @param StartBit The ordinal of the least significant bit in the bit field.
1070 IN UINTN StartBit,
1077 BitFieldWrite32 (PciSegmentRead32 (Address), StartBit, EndBit, Value)
1093 If StartBit is greater than 31, then ASSERT().
1095 If EndBit is less than StartBit, then ASSERT().
1098 @param StartBit The ordinal of the least significant bit in the bit field.
1111 IN UINTN StartBit,
1118 BitFieldOr32 (PciSegmentRead32 (Address), StartBit, EndBit, OrData)
1134 If StartBit is greater than 31, then ASSERT().
1136 If EndBit is less than StartBit, then ASSERT().
1139 @param StartBit The ordinal of the least significant bit in the bit field.
1152 IN UINTN StartBit,
1159 BitFieldAnd32 (PciSegmentRead32 (Address), StartBit, EndBit, AndData)
1177 If StartBit is greater than 31, then ASSERT().
1179 If EndBit is less than StartBit, then ASSERT().
1182 @param StartBit The ordinal of the least significant bit in the bit field.
1196 IN UINTN StartBit,
1204 BitFieldAndThenOr32 (PciSegmentRead32 (Address), StartBit, EndBit, AndData, OrData)