Home | History | Annotate | Download | only in PeiPciSegmentLibPciCfg2

Lines Matching refs:EndBit

332   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().
372 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
377 @param EndBit The ordinal of the most significant bit in the bit field.
389 IN UINTN EndBit,
395 BitFieldWrite8 (PciSegmentRead8 (Address), StartBit, EndBit, Value)
412 If EndBit is greater than 7, then ASSERT().
413 If EndBit is less than StartBit, then ASSERT().
414 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
419 @param EndBit The ordinal of the most significant bit in the bit field.
431 IN UINTN EndBit,
437 BitFieldOr8 (PciSegmentRead8 (Address), StartBit, EndBit, OrData)
454 If EndBit is greater than 7, then ASSERT().
455 If EndBit is less than StartBit, then ASSERT().
456 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
461 @param EndBit The ordinal of the most significant bit in the bit field.
473 IN UINTN EndBit,
479 BitFieldAnd8 (PciSegmentRead8 (Address), StartBit, EndBit, AndData)
498 If EndBit is greater than 7, then ASSERT().
499 If EndBit is less than StartBit, then ASSERT().
500 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
501 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
506 @param EndBit The ordinal of the most significant bit in the bit field.
519 IN UINTN EndBit,
526 BitFieldAndThenOr8 (PciSegmentRead8 (Address), StartBit, EndBit, AndData, OrData)
677 specified by the StartBit and the EndBit. The value of the bit field is
683 If EndBit is greater than 15, then ASSERT().
684 If EndBit is less than StartBit, then ASSERT().
689 @param EndBit The ordinal of the most significant bit in the bit field.
700 IN UINTN EndBit
703 return BitFieldRead16 (PciSegmentRead16 (Address), StartBit, EndBit);
710 field is specified by the StartBit and the EndBit. All other bits in the
717 If EndBit is greater than 15, then ASSERT().
718 If EndBit is less than StartBit, then ASSERT().
719 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
724 @param EndBit The ordinal of the most significant bit in the bit field.
736 IN UINTN EndBit,
742 BitFieldWrite16 (PciSegmentRead16 (Address), StartBit, EndBit, Value)
754 If EndBit is greater than 15, then ASSERT().
755 If EndBit is less than StartBit, then ASSERT().
756 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
761 @param EndBit The ordinal of the most significant bit in the bit field.
773 IN UINTN EndBit,
779 BitFieldOr16 (PciSegmentRead16 (Address), StartBit, EndBit, OrData)
797 If EndBit is greater than 7, then ASSERT().
798 If EndBit is less than StartBit, then ASSERT().
799 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
804 @param EndBit The ordinal of the most significant bit in the bit field.
816 IN UINTN EndBit,
822 BitFieldAnd16 (PciSegmentRead16 (Address), StartBit, EndBit, AndData)
841 If EndBit is greater than 15, then ASSERT().
842 If EndBit is less than StartBit, then ASSERT().
843 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
844 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
849 @param EndBit The ordinal of the most significant bit in the bit field.
862 IN UINTN EndBit,
869 BitFieldAndThenOr16 (PciSegmentRead16 (Address), StartBit, EndBit, AndData, OrData)
1021 specified by the StartBit and the EndBit. The value of the bit field is
1027 If EndBit is greater than 31, then ASSERT().
1028 If EndBit is less than StartBit, then ASSERT().
1033 @param EndBit The ordinal of the most significant bit in the bit field.
1044 IN UINTN EndBit
1047 return BitFieldRead32 (PciSegmentRead32 (Address), StartBit, EndBit);
1054 field is specified by the StartBit and the EndBit. All other bits in the
1061 If EndBit is greater than 31, then ASSERT().
1062 If EndBit is less than StartBit, then ASSERT().
1063 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1068 @param EndBit The ordinal of the most significant bit in the bit field.
1080 IN UINTN EndBit,
1086 BitFieldWrite32 (PciSegmentRead32 (Address), StartBit, EndBit, Value)
1103 If EndBit is greater than 31, then ASSERT().
1104 If EndBit is less than StartBit, then ASSERT().
1105 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1110 @param EndBit The ordinal of the most significant bit in the bit field.
1122 IN UINTN EndBit,
1128 BitFieldOr32 (PciSegmentRead32 (Address), StartBit, EndBit, OrData)
1145 If EndBit is greater than 31, then ASSERT().
1146 If EndBit is less than StartBit, then ASSERT().
1147 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1152 @param EndBit The ordinal of the most significant bit in the bit field.
1164 IN UINTN EndBit,
1170 BitFieldAnd32 (PciSegmentRead32 (Address), StartBit, EndBit, AndData)
1189 If EndBit is greater than 31, then ASSERT().
1190 If EndBit is less than StartBit, then ASSERT().
1191 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1192 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1197 @param EndBit The ordinal of the most significant bit in the bit field.
1210 IN UINTN EndBit,
1217 BitFieldAndThenOr32 (PciSegmentRead32 (Address), StartBit, EndBit, AndData, OrData)