Lines Matching refs:EndBit
239 specified by the StartBit and the EndBit. The value of the bit field is
244 If EndBit is greater than 7, then ASSERT().
245 If EndBit is less than StartBit, then ASSERT().
250 @param EndBit The ordinal of the most significant bit in the bit field.
261 IN UINTN EndBit
264 return InternalSavePciWrite8ValueToBootScript (Address, PciBitFieldRead8 (Address, StartBit, EndBit));
272 field is specified by the StartBit and the EndBit. All other bits in the
278 If EndBit is greater than 7, then ASSERT().
279 If EndBit is less than StartBit, then ASSERT().
280 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
285 @param EndBit The ordinal of the most significant bit in the bit field.
297 IN UINTN EndBit,
301 return InternalSavePciWrite8ValueToBootScript (Address, PciBitFieldWrite8 (Address, StartBit, EndBit, Value));
318 If EndBit is greater than 7, then ASSERT().
319 If EndBit is less than StartBit, then ASSERT().
320 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
325 @param EndBit The ordinal of the most significant bit in the bit field.
337 IN UINTN EndBit,
341 return InternalSavePciWrite8ValueToBootScript (Address, PciBitFieldOr8 (Address, StartBit, EndBit, OrData));
358 If EndBit is greater than 7, then ASSERT().
359 If EndBit is less than StartBit, then ASSERT().
360 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
365 @param EndBit The ordinal of the most significant bit in the bit field.
377 IN UINTN EndBit,
381 return InternalSavePciWrite8ValueToBootScript (Address, PciBitFieldAnd8 (Address, StartBit, EndBit, AndData));
399 If EndBit is greater than 7, then ASSERT().
400 If EndBit is less than StartBit, then ASSERT().
401 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
402 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
407 @param EndBit The ordinal of the most significant bit in the bit field.
420 IN UINTN EndBit,
425 return InternalSavePciWrite8ValueToBootScript (Address, PciBitFieldAndThenOr8 (Address, StartBit, EndBit, AndData, OrData));
610 specified by the StartBit and the EndBit. The value of the bit field is
616 If EndBit is greater than 15, then ASSERT().
617 If EndBit is less than StartBit, then ASSERT().
622 @param EndBit The ordinal of the most significant bit in the bit field.
633 IN UINTN EndBit
636 return InternalSavePciWrite16ValueToBootScript (Address, PciBitFieldRead16 (Address, StartBit, EndBit));
644 field is specified by the StartBit and the EndBit. All other bits in the
651 If EndBit is greater than 15, then ASSERT().
652 If EndBit is less than StartBit, then ASSERT().
653 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
658 @param EndBit The ordinal of the most significant bit in the bit field.
670 IN UINTN EndBit,
674 return InternalSavePciWrite16ValueToBootScript (Address, PciBitFieldWrite16 (Address, StartBit, EndBit, Value));
692 If EndBit is greater than 15, then ASSERT().
693 If EndBit is less than StartBit, then ASSERT().
694 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
699 @param EndBit The ordinal of the most significant bit in the bit field.
711 IN UINTN EndBit,
715 return InternalSavePciWrite16ValueToBootScript (Address, PciBitFieldOr16 (Address, StartBit, EndBit, OrData));
733 If EndBit is greater than 15, then ASSERT().
734 If EndBit is less than StartBit, then ASSERT().
735 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
740 @param EndBit The ordinal of the most significant bit in the bit field.
752 IN UINTN EndBit,
756 return InternalSavePciWrite16ValueToBootScript (Address, PciBitFieldAnd16 (Address, StartBit, EndBit, AndData));
775 If EndBit is greater than 15, then ASSERT().
776 If EndBit is less than StartBit, then ASSERT().
777 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
778 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
783 @param EndBit The ordinal of the most significant bit in the bit field.
796 IN UINTN EndBit,
801 return InternalSavePciWrite16ValueToBootScript (Address, PciBitFieldAndThenOr16 (Address, StartBit, EndBit, AndData, OrData));
986 specified by the StartBit and the EndBit. The value of the bit field is
992 If EndBit is greater than 31, then ASSERT().
993 If EndBit is less than StartBit, then ASSERT().
998 @param EndBit The ordinal of the most significant bit in the bit field.
1009 IN UINTN EndBit
1012 return InternalSavePciWrite32ValueToBootScript (Address, PciBitFieldRead32 (Address, StartBit, EndBit));
1020 field is specified by the StartBit and the EndBit. All other bits in the
1027 If EndBit is greater than 31, then ASSERT().
1028 If EndBit is less than StartBit, then ASSERT().
1029 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1034 @param EndBit The ordinal of the most significant bit in the bit field.
1046 IN UINTN EndBit,
1050 return InternalSavePciWrite32ValueToBootScript (Address, PciBitFieldWrite32 (Address, StartBit, EndBit, Value));
1068 If EndBit is greater than 31, then ASSERT().
1069 If EndBit is less than StartBit, then ASSERT().
1070 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1075 @param EndBit The ordinal of the most significant bit in the bit field.
1087 IN UINTN EndBit,
1091 return InternalSavePciWrite32ValueToBootScript (Address, PciBitFieldOr32 (Address, StartBit, EndBit, OrData));
1109 If EndBit is greater than 31, then ASSERT().
1110 If EndBit is less than StartBit, then ASSERT().
1111 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1116 @param EndBit The ordinal of the most significant bit in the bit field.
1128 IN UINTN EndBit,
1132 return InternalSavePciWrite32ValueToBootScript (Address, PciBitFieldAnd32 (Address, StartBit, EndBit, AndData));
1151 If EndBit is greater than 31, then ASSERT().
1152 If EndBit is less than StartBit, then ASSERT().
1153 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1154 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1159 @param EndBit The ordinal of the most significant bit in the bit field.
1172 IN UINTN EndBit,
1177 return InternalSavePciWrite32ValueToBootScript (Address, PciBitFieldAndThenOr32 (Address, StartBit, EndBit, AndData, OrData));