Lines Matching refs:EndBit
227 the StartBit and the EndBit. The value of the bit field is returned.
231 If EndBit is greater than 7, then ASSERT().
232 If EndBit is less than StartBit, then ASSERT().
237 @param EndBit The ordinal of the most significant bit in the bit field.
248 IN UINTN EndBit
251 return InternalSaveIoWrite8ValueToBootScript (Port, IoBitFieldRead8 (Port, StartBit, EndBit));
259 by the StartBit and the EndBit. All other bits in the destination I/O
265 If EndBit is greater than 7, then ASSERT().
266 If EndBit is less than StartBit, then ASSERT().
267 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
272 @param EndBit The ordinal of the most significant bit in the bit field.
284 IN UINTN EndBit,
288 return InternalSaveIoWrite8ValueToBootScript (Port, IoBitFieldWrite8 (Port, StartBit, EndBit, Value));
304 If EndBit is greater than 7, then ASSERT().
305 If EndBit is less than StartBit, then ASSERT().
306 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
311 @param EndBit The ordinal of the most significant bit in the bit field.
323 IN UINTN EndBit,
327 return InternalSaveIoWrite8ValueToBootScript (Port, IoBitFieldOr8 (Port, StartBit, EndBit, OrData));
343 If EndBit is greater than 7, then ASSERT().
344 If EndBit is less than StartBit, then ASSERT().
345 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
350 @param EndBit The ordinal of the most significant bit in the bit field.
362 IN UINTN EndBit,
366 return InternalSaveIoWrite8ValueToBootScript (Port, IoBitFieldAnd8 (Port, StartBit, EndBit, AndData));
383 If EndBit is greater than 7, then ASSERT().
384 If EndBit is less than StartBit, then ASSERT().
385 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
386 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
391 @param EndBit The ordinal of the most significant bit in the bit field.
404 IN UINTN EndBit,
409 return InternalSaveIoWrite8ValueToBootScript (Port, IoBitFieldAndThenOr8 (Port, StartBit, EndBit, AndData, OrData));
582 the StartBit and the EndBit. The value of the bit field is returned.
586 If EndBit is greater than 15, then ASSERT().
587 If EndBit is less than StartBit, then ASSERT().
592 @param EndBit The ordinal of the most significant bit in the bit field.
603 IN UINTN EndBit
606 return InternalSaveIoWrite16ValueToBootScript (Port, IoBitFieldRead16 (Port, StartBit, EndBit));
614 by the StartBit and the EndBit. All other bits in the destination I/O
620 If EndBit is greater than 15, then ASSERT().
621 If EndBit is less than StartBit, then ASSERT().
622 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
627 @param EndBit The ordinal of the most significant bit in the bit field.
639 IN UINTN EndBit,
643 return InternalSaveIoWrite16ValueToBootScript (Port, IoBitFieldWrite16 (Port, StartBit, EndBit, Value));
659 If EndBit is greater than 15, then ASSERT().
660 If EndBit is less than StartBit, then ASSERT().
661 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
666 @param EndBit The ordinal of the most significant bit in the bit field.
678 IN UINTN EndBit,
682 return InternalSaveIoWrite16ValueToBootScript (Port, IoBitFieldOr16 (Port, StartBit, EndBit, OrData));
698 If EndBit is greater than 15, then ASSERT().
699 If EndBit is less than StartBit, then ASSERT().
700 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
705 @param EndBit The ordinal of the most significant bit in the bit field.
717 IN UINTN EndBit,
721 return InternalSaveIoWrite16ValueToBootScript (Port, IoBitFieldAnd16 (Port, StartBit, EndBit, AndData));
739 If EndBit is greater than 15, then ASSERT().
740 If EndBit is less than StartBit, then ASSERT().
741 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
742 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
747 @param EndBit The ordinal of the most significant bit in the bit field.
760 IN UINTN EndBit,
765 return InternalSaveIoWrite16ValueToBootScript (Port, IoBitFieldAndThenOr16 (Port, StartBit, EndBit, AndData, OrData));
938 the StartBit and the EndBit. The value of the bit field is returned.
942 If EndBit is greater than 31, then ASSERT().
943 If EndBit is less than StartBit, then ASSERT().
948 @param EndBit The ordinal of the most significant bit in the bit field.
959 IN UINTN EndBit
962 return InternalSaveIoWrite32ValueToBootScript (Port, IoBitFieldRead32 (Port, StartBit, EndBit));
970 by the StartBit and the EndBit. All other bits in the destination I/O
976 If EndBit is greater than 31, then ASSERT().
977 If EndBit is less than StartBit, then ASSERT().
978 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
983 @param EndBit The ordinal of the most significant bit in the bit field.
995 IN UINTN EndBit,
999 return InternalSaveIoWrite32ValueToBootScript (Port, IoBitFieldWrite32 (Port, StartBit, EndBit, Value));
1015 If EndBit is greater than 31, then ASSERT().
1016 If EndBit is less than StartBit, then ASSERT().
1017 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1022 @param EndBit The ordinal of the most significant bit in the bit field.
1034 IN UINTN EndBit,
1038 return InternalSaveIoWrite32ValueToBootScript (Port, IoBitFieldOr32 (Port, StartBit, EndBit, OrData));
1054 If EndBit is greater than 31, then ASSERT().
1055 If EndBit is less than StartBit, then ASSERT().
1056 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1061 @param EndBit The ordinal of the most significant bit in the bit field.
1073 IN UINTN EndBit,
1077 return InternalSaveIoWrite32ValueToBootScript (Port, IoBitFieldAnd32 (Port, StartBit, EndBit, AndData));
1095 If EndBit is greater than 31, then ASSERT().
1096 If EndBit is less than StartBit, then ASSERT().
1097 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1098 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1103 @param EndBit The ordinal of the most significant bit in the bit field.
1116 IN UINTN EndBit,
1121 return InternalSaveIoWrite32ValueToBootScript (Port, IoBitFieldAndThenOr32 (Port, StartBit, EndBit, AndData, OrData));
1294 the StartBit and the EndBit. The value of the bit field is returned.
1298 If EndBit is greater than 63, then ASSERT().
1299 If EndBit is less than StartBit, then ASSERT().
1304 @param EndBit The ordinal of the most significant bit in the bit field.
1315 IN UINTN EndBit
1318 return InternalSaveIoWrite64ValueToBootScript (Port, IoBitFieldRead64 (Port, StartBit, EndBit));
1326 by the StartBit and the EndBit. All other bits in the destination I/O
1332 If EndBit is greater than 63, then ASSERT().
1333 If EndBit is less than StartBit, then ASSERT().
1334 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1339 @param EndBit The ordinal of the most significant bit in the bit field.
1351 IN UINTN EndBit,
1355 return InternalSaveIoWrite64ValueToBootScript (Port, IoBitFieldWrite64 (Port, StartBit, EndBit, Value));
1371 If EndBit is greater than 63, then ASSERT().
1372 If EndBit is less than StartBit, then ASSERT().
1373 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1378 @param EndBit The ordinal of the most significant bit in the bit field.
1390 IN UINTN EndBit,
1394 return InternalSaveIoWrite64ValueToBootScript (Port, IoBitFieldOr64 (Port, StartBit, EndBit, OrData));
1410 If EndBit is greater than 63, then ASSERT().
1411 If EndBit is less than StartBit, then ASSERT().
1412 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1417 @param EndBit The ordinal of the most significant bit in the bit field.
1429 IN UINTN EndBit,
1433 return InternalSaveIoWrite64ValueToBootScript (Port, IoBitFieldAnd64 (Port, StartBit, EndBit, AndData));
1451 If EndBit is greater than 63, then ASSERT().
1452 If EndBit is less than StartBit, then ASSERT().
1453 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1454 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1459 @param EndBit The ordinal of the most significant bit in the bit field.
1472 IN UINTN EndBit,
1477 return InternalSaveIoWrite64ValueToBootScript (Port, IoBitFieldAndThenOr64 (Port, StartBit, EndBit, AndData, OrData));
1681 the StartBit and the EndBit. The value of the bit field is returned.
1685 If EndBit is greater than 7, then ASSERT().
1686 If EndBit is less than StartBit, then ASSERT().
1691 @param EndBit The ordinal of the most significant bit in the bit field.
1702 IN UINTN EndBit
1705 return InternalSaveMmioWrite8ValueToBootScript (Address, MmioBitFieldRead8 (Address, StartBit, EndBit));
1713 specified by the StartBit and the EndBit. All other bits in the destination
1718 If EndBit is greater than 7, then ASSERT().
1719 If EndBit is less than StartBit, then ASSERT().
1720 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1725 @param EndBit The ordinal of the most significant bit in the bit field.
1737 IN UINTN EndBit,
1741 return InternalSaveMmioWrite8ValueToBootScript (Address, MmioBitFieldWrite8 (Address, StartBit, EndBit, Value));
1758 If EndBit is greater than 7, then ASSERT().
1759 If EndBit is less than StartBit, then ASSERT().
1760 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1765 @param EndBit The ordinal of the most significant bit in the bit field.
1777 IN UINTN EndBit,
1781 return InternalSaveMmioWrite8ValueToBootScript (Address, MmioBitFieldOr8 (Address, StartBit, EndBit, OrData));
1798 If EndBit is greater than 7, then ASSERT().
1799 If EndBit is less than StartBit, then ASSERT().
1800 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1805 @param EndBit The ordinal of the most significant bit in the bit field.
1817 IN UINTN EndBit,
1821 return InternalSaveMmioWrite8ValueToBootScript (Address, MmioBitFieldAnd8 (Address, StartBit, EndBit, AndData));
1839 If EndBit is greater than 7, then ASSERT().
1840 If EndBit is less than StartBit, then ASSERT().
1841 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1842 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1847 @param EndBit The ordinal of the most significant bit in the bit field.
1860 IN UINTN EndBit,
1865 return InternalSaveMmioWrite8ValueToBootScript (Address, MmioBitFieldAndThenOr8 (Address, StartBit, EndBit, AndData, OrData));
2039 the StartBit and the EndBit. The value of the bit field is returned.
2043 If EndBit is greater than 15, then ASSERT().
2044 If EndBit is less than StartBit, then ASSERT().
2049 @param EndBit The ordinal of the most significant bit in the bit field.
2060 IN UINTN EndBit
2063 return InternalSaveMmioWrite16ValueToBootScript (Address, MmioBitFieldRead16 (Address, StartBit, EndBit));
2071 specified by the StartBit and the EndBit. All other bits in the destination
2076 If EndBit is greater than 15, then ASSERT().
2077 If EndBit is less than StartBit, then ASSERT().
2078 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
2083 @param EndBit The ordinal of the most significant bit in the bit field.
2095 IN UINTN EndBit,
2099 return InternalSaveMmioWrite16ValueToBootScript (Address, MmioBitFieldWrite16 (Address, StartBit, EndBit, Value));
2116 If EndBit is greater than 15, then ASSERT().
2117 If EndBit is less than StartBit, then ASSERT().
2118 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
2123 @param EndBit The ordinal of the most significant bit in the bit field.
2135 IN UINTN EndBit,
2139 return InternalSaveMmioWrite16ValueToBootScript (Address, MmioBitFieldOr16 (Address, StartBit, EndBit, OrData));
2156 If EndBit is greater than 15, then ASSERT().
2157 If EndBit is less than StartBit, then ASSERT().
2158 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
2163 @param EndBit The ordinal of the most significant bit in the bit field.
2175 IN UINTN EndBit,
2179 return InternalSaveMmioWrite16ValueToBootScript (Address, MmioBitFieldAnd16 (Address, StartBit, EndBit, AndData));
2197 If EndBit is greater than 15, then ASSERT().
2198 If EndBit is less than StartBit, then ASSERT().
2199 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
2200 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
2205 @param EndBit The ordinal of the most significant bit in the bit field.
2218 IN UINTN EndBit,
2223 return InternalSaveMmioWrite16ValueToBootScript (Address, MmioBitFieldAndThenOr16 (Address, StartBit, EndBit, AndData, OrData));
2396 the StartBit and the EndBit. The value of the bit field is returned.
2400 If EndBit is greater than 31, then ASSERT().
2401 If EndBit is less than StartBit, then ASSERT().
2406 @param EndBit The ordinal of the most significant bit in the bit field.
2417 IN UINTN EndBit
2420 return InternalSaveMmioWrite32ValueToBootScript (Address, MmioBitFieldRead32 (Address, StartBit, EndBit));
2428 specified by the StartBit and the EndBit. All other bits in the destination
2433 If EndBit is greater than 31, then ASSERT().
2434 If EndBit is less than StartBit, then ASSERT().
2435 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
2440 @param EndBit The ordinal of the most significant bit in the bit field.
2452 IN UINTN EndBit,
2456 return InternalSaveMmioWrite32ValueToBootScript (Address, MmioBitFieldWrite32 (Address, StartBit, EndBit, Value));
2473 If EndBit is greater than 31, then ASSERT().
2474 If EndBit is less than StartBit, then ASSERT().
2475 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
2480 @param EndBit The ordinal of the most significant bit in the bit field.
2492 IN UINTN EndBit,
2496 return InternalSaveMmioWrite32ValueToBootScript (Address, MmioBitFieldOr32 (Address, StartBit, EndBit, OrData));
2513 If EndBit is greater than 31, then ASSERT().
2514 If EndBit is less than StartBit, then ASSERT().
2515 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
2520 @param EndBit The ordinal of the most significant bit in the bit field.
2532 IN UINTN EndBit,
2536 return InternalSaveMmioWrite32ValueToBootScript (Address, MmioBitFieldAnd32 (Address, StartBit, EndBit, AndData));
2554 If EndBit is greater than 31, then ASSERT().
2555 If EndBit is less than StartBit, then ASSERT().
2556 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
2557 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
2562 @param EndBit The ordinal of the most significant bit in the bit field.
2575 IN UINTN EndBit,
2580 return InternalSaveMmioWrite32ValueToBootScript (Address, MmioBitFieldAndThenOr32 (Address, StartBit, EndBit, AndData, OrData));
2753 EndBit. The value of the bit field is returned.
2757 If EndBit is greater than 63, then ASSERT().
2758 If EndBit is less than StartBit, then ASSERT().
2763 @param EndBit The ordinal of the most significant bit in the bit field.
2774 IN UINTN EndBit
2777 return InternalSaveMmioWrite64ValueToBootScript (Address, MmioBitFieldRead64 (Address, StartBit, EndBit));
2785 specified by the StartBit and the EndBit. All other bits in the destination
2790 If EndBit is greater than 63, then ASSERT().
2791 If EndBit is less than StartBit, then ASSERT().
2792 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
2797 @param EndBit The ordinal of the most significant bit in the bit field.
2809 IN UINTN EndBit,
2813 return InternalSaveMmioWrite64ValueToBootScript (Address, MmioBitFieldWrite64 (Address, StartBit, EndBit, Value));
2830 If EndBit is greater than 63, then ASSERT().
2831 If EndBit is less than StartBit, then ASSERT().
2832 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
2837 @param EndBit The ordinal of the most significant bit in the bit field.
2849 IN UINTN EndBit,
2853 return InternalSaveMmioWrite64ValueToBootScript (Address, MmioBitFieldOr64 (Address, StartBit, EndBit, OrData));
2870 If EndBit is greater than 63, then ASSERT().
2871 If EndBit is less than StartBit, then ASSERT().
2872 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
2877 @param EndBit The ordinal of the most significant bit in the bit field.
2889 IN UINTN EndBit,
2893 return InternalSaveMmioWrite64ValueToBootScript (Address, MmioBitFieldAnd64 (Address, StartBit, EndBit, AndData));
2911 If EndBit is greater than 63, then ASSERT().
2912 If EndBit is less than StartBit, then ASSERT().
2913 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
2914 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
2919 @param EndBit The ordinal of the most significant bit in the bit field.
2932 IN UINTN EndBit,
2937 return InternalSaveMmioWrite64ValueToBootScript (Address, MmioBitFieldAndThenOr64 (Address, StartBit, EndBit, AndData, OrData));