Lines Matching defs:EndBit

199   specified by the StartBit and the EndBit. The value of the bit field is
204 If EndBit is greater than 7, then ASSERT().
205 If EndBit is less than StartBit, then ASSERT().
210 @param EndBit The ordinal of the most significant bit in the bit field.
221 IN UINTN EndBit
224 return PciExpressBitFieldRead8 (Address, StartBit, EndBit);
231 field is specified by the StartBit and the EndBit. All other bits in the
237 If EndBit is greater than 7, then ASSERT().
238 If EndBit is less than StartBit, then ASSERT().
243 @param EndBit The ordinal of the most significant bit in the bit field.
255 IN UINTN EndBit,
259 return PciExpressBitFieldWrite8 (Address, StartBit, EndBit, Value);
275 If EndBit is greater than 7, then ASSERT().
276 If EndBit is less than StartBit, then ASSERT().
281 @param EndBit The ordinal of the most significant bit in the bit field.
293 IN UINTN EndBit,
297 return PciExpressBitFieldOr8 (Address, StartBit, EndBit, OrData);
313 If EndBit is greater than 7, then ASSERT().
314 If EndBit is less than StartBit, then ASSERT().
319 @param EndBit The ordinal of the most significant bit in the bit field.
331 IN UINTN EndBit,
335 return PciExpressBitFieldAnd8 (Address, StartBit, EndBit, AndData);
353 If EndBit is greater than 7, then ASSERT().
354 If EndBit is less than StartBit, then ASSERT().
359 @param EndBit The ordinal of the most significant bit in the bit field.
372 IN UINTN EndBit,
377 return PciExpressBitFieldAndThenOr8 (Address, StartBit, EndBit, AndData, OrData);
532 specified by the StartBit and the EndBit. The value of the bit field is
538 If EndBit is greater than 15, then ASSERT().
539 If EndBit is less than StartBit, then ASSERT().
544 @param EndBit The ordinal of the most significant bit in the bit field.
555 IN UINTN EndBit
558 return PciExpressBitFieldRead16 (Address, StartBit, EndBit);
565 field is specified by the StartBit and the EndBit. All other bits in the
572 If EndBit is greater than 15, then ASSERT().
573 If EndBit is less than StartBit, then ASSERT().
578 @param EndBit The ordinal of the most significant bit in the bit field.
590 IN UINTN EndBit,
594 return PciExpressBitFieldWrite16 (Address, StartBit, EndBit, Value);
611 If EndBit is greater than 15, then ASSERT().
612 If EndBit is less than StartBit, then ASSERT().
617 @param EndBit The ordinal of the most significant bit in the bit field.
629 IN UINTN EndBit,
633 return PciExpressBitFieldOr16 (Address, StartBit, EndBit, OrData);
650 If EndBit is greater than 15, then ASSERT().
651 If EndBit is less than StartBit, then ASSERT().
656 @param EndBit The ordinal of the most significant bit in the bit field.
668 IN UINTN EndBit,
672 return PciExpressBitFieldAnd16 (Address, StartBit, EndBit, AndData);
691 If EndBit is greater than 15, then ASSERT().
692 If EndBit is less than StartBit, then ASSERT().
697 @param EndBit The ordinal of the most significant bit in the bit field.
710 IN UINTN EndBit,
715 return PciExpressBitFieldAndThenOr16 (Address, StartBit, EndBit, AndData, OrData);
870 specified by the StartBit and the EndBit. The value of the bit field is
876 If EndBit is greater than 31, then ASSERT().
877 If EndBit is less than StartBit, then ASSERT().
882 @param EndBit The ordinal of the most significant bit in the bit field.
893 IN UINTN EndBit
896 return PciExpressBitFieldRead32 (Address, StartBit, EndBit);
903 field is specified by the StartBit and the EndBit. All other bits in the
910 If EndBit is greater than 31, then ASSERT().
911 If EndBit is less than StartBit, then ASSERT().
916 @param EndBit The ordinal of the most significant bit in the bit field.
928 IN UINTN EndBit,
932 return PciExpressBitFieldWrite32 (Address, StartBit, EndBit, Value);
949 If EndBit is greater than 31, then ASSERT().
950 If EndBit is less than StartBit, then ASSERT().
955 @param EndBit The ordinal of the most significant bit in the bit field.
967 IN UINTN EndBit,
971 return PciExpressBitFieldOr32 (Address, StartBit, EndBit, OrData);
988 If EndBit is greater than 31, then ASSERT().
989 If EndBit is less than StartBit, then ASSERT().
994 @param EndBit The ordinal of the most significant bit in the bit field.
1006 IN UINTN EndBit,
1010 return PciExpressBitFieldAnd32 (Address, StartBit, EndBit, AndData);
1029 If EndBit is greater than 31, then ASSERT().
1030 If EndBit is less than StartBit, then ASSERT().
1035 @param EndBit The ordinal of the most significant bit in the bit field.
1048 IN UINTN EndBit,
1053 return PciExpressBitFieldAndThenOr32 (Address, StartBit, EndBit, AndData, OrData);