Lines Matching defs: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().
284 @param EndBit The ordinal of the most significant bit in the bit field.
296 IN UINTN EndBit,
300 return InternalSavePciWrite8ValueToBootScript (Address, PciBitFieldWrite8 (Address, StartBit, EndBit, Value));
317 If EndBit is greater than 7, then ASSERT().
318 If EndBit is less than StartBit, then ASSERT().
323 @param EndBit The ordinal of the most significant bit in the bit field.
335 IN UINTN EndBit,
339 return InternalSavePciWrite8ValueToBootScript (Address, PciBitFieldOr8 (Address, StartBit, EndBit, OrData));
356 If EndBit is greater than 7, then ASSERT().
357 If EndBit is less than StartBit, then ASSERT().
362 @param EndBit The ordinal of the most significant bit in the bit field.
374 IN UINTN EndBit,
378 return InternalSavePciWrite8ValueToBootScript (Address, PciBitFieldAnd8 (Address, StartBit, EndBit, AndData));
396 If EndBit is greater than 7, then ASSERT().
397 If EndBit is less than StartBit, then ASSERT().
402 @param EndBit The ordinal of the most significant bit in the bit field.
415 IN UINTN EndBit,
420 return InternalSavePciWrite8ValueToBootScript (Address, PciBitFieldAndThenOr8 (Address, StartBit, EndBit, AndData, OrData));
605 specified by the StartBit and the EndBit. The value of the bit field is
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.
628 IN UINTN EndBit
631 return InternalSavePciWrite16ValueToBootScript (Address, PciBitFieldRead16 (Address, StartBit, EndBit));
639 field is specified by the StartBit and the EndBit. All other bits in the
646 If EndBit is greater than 15, then ASSERT().
647 If EndBit is less than StartBit, then ASSERT().
652 @param EndBit The ordinal of the most significant bit in the bit field.
664 IN UINTN EndBit,
668 return InternalSavePciWrite16ValueToBootScript (Address, PciBitFieldWrite16 (Address, StartBit, EndBit, Value));
686 If EndBit is greater than 15, then ASSERT().
687 If EndBit is less than StartBit, then ASSERT().
692 @param EndBit The ordinal of the most significant bit in the bit field.
704 IN UINTN EndBit,
708 return InternalSavePciWrite16ValueToBootScript (Address, PciBitFieldOr16 (Address, StartBit, EndBit, OrData));
726 If EndBit is greater than 15, then ASSERT().
727 If EndBit is less than StartBit, then ASSERT().
732 @param EndBit The ordinal of the most significant bit in the bit field.
744 IN UINTN EndBit,
748 return InternalSavePciWrite16ValueToBootScript (Address, PciBitFieldAnd16 (Address, StartBit, EndBit, AndData));
767 If EndBit is greater than 15, then ASSERT().
768 If EndBit is less than StartBit, then ASSERT().
773 @param EndBit The ordinal of the most significant bit in the bit field.
786 IN UINTN EndBit,
791 return InternalSavePciWrite16ValueToBootScript (Address, PciBitFieldAndThenOr16 (Address, StartBit, EndBit, AndData, OrData));
976 specified by the StartBit and the EndBit. The value of the bit field is
982 If EndBit is greater than 31, then ASSERT().
983 If EndBit is less than StartBit, then ASSERT().
988 @param EndBit The ordinal of the most significant bit in the bit field.
999 IN UINTN EndBit
1002 return InternalSavePciWrite32ValueToBootScript (Address, PciBitFieldRead32 (Address, StartBit, EndBit));
1010 field is specified by the StartBit and the EndBit. All other bits in the
1017 If EndBit is greater than 31, then ASSERT().
1018 If EndBit is less than StartBit, then ASSERT().
1023 @param EndBit The ordinal of the most significant bit in the bit field.
1035 IN UINTN EndBit,
1039 return InternalSavePciWrite32ValueToBootScript (Address, PciBitFieldWrite32 (Address, StartBit, EndBit, Value));
1057 If EndBit is greater than 31, then ASSERT().
1058 If EndBit is less than StartBit, then ASSERT().
1063 @param EndBit The ordinal of the most significant bit in the bit field.
1075 IN UINTN EndBit,
1079 return InternalSavePciWrite32ValueToBootScript (Address, PciBitFieldOr32 (Address, StartBit, EndBit, OrData));
1097 If EndBit is greater than 31, then ASSERT().
1098 If EndBit is less than StartBit, then ASSERT().
1103 @param EndBit The ordinal of the most significant bit in the bit field.
1115 IN UINTN EndBit,
1119 return InternalSavePciWrite32ValueToBootScript (Address, PciBitFieldAnd32 (Address, StartBit, EndBit, AndData));
1138 If EndBit is greater than 31, then ASSERT().
1139 If EndBit is less than StartBit, then ASSERT().
1144 @param EndBit The ordinal of the most significant bit in the bit field.
1157 IN UINTN EndBit,
1162 return InternalSavePciWrite32ValueToBootScript (Address, PciBitFieldAndThenOr32 (Address, StartBit, EndBit, AndData, OrData));