Home | History | Annotate | Download | only in BasePciLibPciExpress

Lines Matching refs: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().
239 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
244 @param EndBit The ordinal of the most significant bit in the bit field.
256 IN UINTN EndBit,
260 return PciExpressBitFieldWrite8 (Address, StartBit, EndBit, Value);
276 If EndBit is greater than 7, then ASSERT().
277 If EndBit is less than StartBit, then ASSERT().
278 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
283 @param EndBit The ordinal of the most significant bit in the bit field.
295 IN UINTN EndBit,
299 return PciExpressBitFieldOr8 (Address, StartBit, EndBit, OrData);
315 If EndBit is greater than 7, then ASSERT().
316 If EndBit is less than StartBit, then ASSERT().
317 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
322 @param EndBit The ordinal of the most significant bit in the bit field.
334 IN UINTN EndBit,
338 return PciExpressBitFieldAnd8 (Address, StartBit, EndBit, AndData);
356 If EndBit is greater than 7, then ASSERT().
357 If EndBit is less than StartBit, then ASSERT().
358 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
359 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
364 @param EndBit The ordinal of the most significant bit in the bit field.
377 IN UINTN EndBit,
382 return PciExpressBitFieldAndThenOr8 (Address, StartBit, EndBit, AndData, OrData);
537 specified by the StartBit and the EndBit. The value of the bit field is
543 If EndBit is greater than 15, then ASSERT().
544 If EndBit is less than StartBit, then ASSERT().
549 @param EndBit The ordinal of the most significant bit in the bit field.
560 IN UINTN EndBit
563 return PciExpressBitFieldRead16 (Address, StartBit, EndBit);
570 field is specified by the StartBit and the EndBit. All other bits in the
577 If EndBit is greater than 15, then ASSERT().
578 If EndBit is less than StartBit, then ASSERT().
579 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
584 @param EndBit The ordinal of the most significant bit in the bit field.
596 IN UINTN EndBit,
600 return PciExpressBitFieldWrite16 (Address, StartBit, EndBit, Value);
617 If EndBit is greater than 15, then ASSERT().
618 If EndBit is less than StartBit, then ASSERT().
619 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
624 @param EndBit The ordinal of the most significant bit in the bit field.
636 IN UINTN EndBit,
640 return PciExpressBitFieldOr16 (Address, StartBit, EndBit, OrData);
657 If EndBit is greater than 15, then ASSERT().
658 If EndBit is less than StartBit, then ASSERT().
659 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
664 @param EndBit The ordinal of the most significant bit in the bit field.
676 IN UINTN EndBit,
680 return PciExpressBitFieldAnd16 (Address, StartBit, EndBit, AndData);
699 If EndBit is greater than 15, then ASSERT().
700 If EndBit is less than StartBit, then ASSERT().
701 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
702 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
707 @param EndBit The ordinal of the most significant bit in the bit field.
720 IN UINTN EndBit,
725 return PciExpressBitFieldAndThenOr16 (Address, StartBit, EndBit, AndData, OrData);
880 specified by the StartBit and the EndBit. The value of the bit field is
886 If EndBit is greater than 31, then ASSERT().
887 If EndBit is less than StartBit, then ASSERT().
892 @param EndBit The ordinal of the most significant bit in the bit field.
903 IN UINTN EndBit
906 return PciExpressBitFieldRead32 (Address, StartBit, EndBit);
913 field is specified by the StartBit and the EndBit. All other bits in the
920 If EndBit is greater than 31, then ASSERT().
921 If EndBit is less than StartBit, then ASSERT().
922 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
927 @param EndBit The ordinal of the most significant bit in the bit field.
939 IN UINTN EndBit,
943 return PciExpressBitFieldWrite32 (Address, StartBit, EndBit, Value);
960 If EndBit is greater than 31, then ASSERT().
961 If EndBit is less than StartBit, then ASSERT().
962 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
967 @param EndBit The ordinal of the most significant bit in the bit field.
979 IN UINTN EndBit,
983 return PciExpressBitFieldOr32 (Address, StartBit, EndBit, OrData);
1000 If EndBit is greater than 31, then ASSERT().
1001 If EndBit is less than StartBit, then ASSERT().
1002 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1007 @param EndBit The ordinal of the most significant bit in the bit field.
1019 IN UINTN EndBit,
1023 return PciExpressBitFieldAnd32 (Address, StartBit, EndBit, AndData);
1042 If EndBit is greater than 31, then ASSERT().
1043 If EndBit is less than StartBit, then ASSERT().
1044 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1045 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1050 @param EndBit The ordinal of the most significant bit in the bit field.
1063 IN UINTN EndBit,
1068 return PciExpressBitFieldAndThenOr32 (Address, StartBit, EndBit, AndData, OrData);