Lines Matching refs:StartBit

239   specified by the StartBit and the EndBit. The value of the bit field is
243 If StartBit is greater than 7, then ASSERT().
245 If EndBit is less than StartBit, then ASSERT().
248 @param StartBit The ordinal of the least significant bit in the bit field.
260 IN UINTN StartBit,
264 return InternalSavePciWrite8ValueToBootScript (Address, PciBitFieldRead8 (Address, StartBit, EndBit));
272 field is specified by the StartBit and the EndBit. All other bits in the
277 If StartBit is greater than 7, then ASSERT().
279 If EndBit is less than StartBit, then ASSERT().
282 @param StartBit The ordinal of the least significant bit in the bit field.
295 IN UINTN StartBit,
300 return InternalSavePciWrite8ValueToBootScript (Address, PciBitFieldWrite8 (Address, StartBit, EndBit, Value));
316 If StartBit is greater than 7, then ASSERT().
318 If EndBit is less than StartBit, then ASSERT().
321 @param StartBit The ordinal of the least significant bit in the bit field.
334 IN UINTN StartBit,
339 return InternalSavePciWrite8ValueToBootScript (Address, PciBitFieldOr8 (Address, StartBit, EndBit, OrData));
355 If StartBit is greater than 7, then ASSERT().
357 If EndBit is less than StartBit, then ASSERT().
360 @param StartBit The ordinal of the least significant bit in the bit field.
373 IN UINTN StartBit,
378 return InternalSavePciWrite8ValueToBootScript (Address, PciBitFieldAnd8 (Address, StartBit, EndBit, AndData));
395 If StartBit is greater than 7, then ASSERT().
397 If EndBit is less than StartBit, then ASSERT().
400 @param StartBit The ordinal of the least significant bit in the bit field.
414 IN UINTN StartBit,
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
610 If StartBit is greater than 15, then ASSERT().
612 If EndBit is less than StartBit, then ASSERT().
615 @param StartBit The ordinal of the least significant bit in the bit field.
627 IN UINTN StartBit,
631 return InternalSavePciWrite16ValueToBootScript (Address, PciBitFieldRead16 (Address, StartBit, EndBit));
639 field is specified by the StartBit and the EndBit. All other bits in the
645 If StartBit is greater than 15, then ASSERT().
647 If EndBit is less than StartBit, then ASSERT().
650 @param StartBit The ordinal of the least significant bit in the bit field.
663 IN UINTN StartBit,
668 return InternalSavePciWrite16ValueToBootScript (Address, PciBitFieldWrite16 (Address, StartBit, EndBit, Value));
685 If StartBit is greater than 15, then ASSERT().
687 If EndBit is less than StartBit, then ASSERT().
690 @param StartBit The ordinal of the least significant bit in the bit field.
703 IN UINTN StartBit,
708 return InternalSavePciWrite16ValueToBootScript (Address, PciBitFieldOr16 (Address, StartBit, EndBit, OrData));
725 If StartBit is greater than 15, then ASSERT().
727 If EndBit is less than StartBit, then ASSERT().
730 @param StartBit The ordinal of the least significant bit in the bit field.
743 IN UINTN StartBit,
748 return InternalSavePciWrite16ValueToBootScript (Address, PciBitFieldAnd16 (Address, StartBit, EndBit, AndData));
766 If StartBit is greater than 15, then ASSERT().
768 If EndBit is less than StartBit, then ASSERT().
771 @param StartBit The ordinal of the least significant bit in the bit field.
785 IN UINTN StartBit,
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
981 If StartBit is greater than 31, then ASSERT().
983 If EndBit is less than StartBit, then ASSERT().
986 @param StartBit The ordinal of the least significant bit in the bit field.
998 IN UINTN StartBit,
1002 return InternalSavePciWrite32ValueToBootScript (Address, PciBitFieldRead32 (Address, StartBit, EndBit));
1010 field is specified by the StartBit and the EndBit. All other bits in the
1016 If StartBit is greater than 31, then ASSERT().
1018 If EndBit is less than StartBit, then ASSERT().
1021 @param StartBit The ordinal of the least significant bit in the bit field.
1034 IN UINTN StartBit,
1039 return InternalSavePciWrite32ValueToBootScript (Address, PciBitFieldWrite32 (Address, StartBit, EndBit, Value));
1056 If StartBit is greater than 31, then ASSERT().
1058 If EndBit is less than StartBit, then ASSERT().
1061 @param StartBit The ordinal of the least significant bit in the bit field.
1074 IN UINTN StartBit,
1079 return InternalSavePciWrite32ValueToBootScript (Address, PciBitFieldOr32 (Address, StartBit, EndBit, OrData));
1096 If StartBit is greater than 31, then ASSERT().
1098 If EndBit is less than StartBit, then ASSERT().
1101 @param StartBit The ordinal of the least significant bit in the bit field.
1114 IN UINTN StartBit,
1119 return InternalSavePciWrite32ValueToBootScript (Address, PciBitFieldAnd32 (Address, StartBit, EndBit, AndData));
1137 If StartBit is greater than 31, then ASSERT().
1139 If EndBit is less than StartBit, then ASSERT().
1142 @param StartBit The ordinal of the least significant bit in the bit field.
1156 IN UINTN StartBit,
1162 return InternalSavePciWrite32ValueToBootScript (Address, PciBitFieldAndThenOr32 (Address, StartBit, EndBit, AndData, OrData));