Home | History | Annotate | Download | only in BasePciLibCf8

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 PciCf8BitFieldRead8 (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 PciCf8BitFieldWrite8 (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 PciCf8BitFieldOr8 (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 PciCf8BitFieldAnd8 (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 PciCf8BitFieldAndThenOr8 (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 PciCf8BitFieldRead16 (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 PciCf8BitFieldWrite16 (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 PciCf8BitFieldOr16 (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 PciCf8BitFieldAnd16 (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 PciCf8BitFieldAndThenOr16 (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 PciCf8BitFieldRead32 (Address, StartBit, EndBit);
913 field is specified by the StartBit and the EndBit
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 PciCf8BitFieldWrite32 (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 PciCf8BitFieldOr32 (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 PciCf8BitFieldAnd32 (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 PciCf8BitFieldAndThenOr32 (Address, StartBit, EndBit, AndData, OrData);