Home | History | Annotate | Download | only in DxeIoLibCpuIo2

Lines Matching refs:EndBit

112   the StartBit and the EndBit. The value of the bit field is returned.

116 If EndBit is greater than 7, then ASSERT().
117 If EndBit is less than StartBit, then ASSERT().
122 @param EndBit The ordinal of the most significant bit in the bit field.
133 IN UINTN EndBit
136 return BitFieldRead8 (IoRead8 (Port), StartBit, EndBit);
143 by the StartBit and the EndBit. All other bits in the destination I/O
149 If EndBit is greater than 7, then ASSERT().
150 If EndBit is less than StartBit, then ASSERT().
151 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
156 @param EndBit The ordinal of the most significant bit in the bit field.
168 IN UINTN EndBit,
174 BitFieldWrite8 (IoRead8 (Port), StartBit, EndBit, Value)
190 If EndBit is greater than 7, then ASSERT().
191 If EndBit is less than StartBit, then ASSERT().
192 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
197 @param EndBit The ordinal of the most significant bit in the bit field.
209 IN UINTN EndBit,
215 BitFieldOr8 (IoRead8 (Port), StartBit, EndBit, OrData)
231 If EndBit is greater than 7, then ASSERT().
232 If EndBit is less than StartBit, then ASSERT().
233 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
238 @param EndBit The ordinal of the most significant bit in the bit field.
250 IN UINTN EndBit,
256 BitFieldAnd8 (IoRead8 (Port), StartBit, EndBit, AndData)
274 If EndBit is greater than 7, then ASSERT().
275 If EndBit is less than StartBit, then ASSERT().
276 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
277 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
282 @param EndBit The ordinal of the most significant bit in the bit field.
295 IN UINTN EndBit,
302 BitFieldAndThenOr8 (IoRead8 (Port), StartBit, EndBit, AndData, OrData)
397 the StartBit and the EndBit. The value of the bit field is returned.
401 If EndBit is greater than 15, then ASSERT().
402 If EndBit is less than StartBit, then ASSERT().
407 @param EndBit The ordinal of the most significant bit in the bit field.
418 IN UINTN EndBit
421 return BitFieldRead16 (IoRead16 (Port), StartBit, EndBit);
428 by the StartBit and the EndBit. All other bits in the destination I/O
434 If EndBit is greater than 15, then ASSERT().
435 If EndBit is less than StartBit, then ASSERT().
436 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
441 @param EndBit The ordinal of the most significant bit in the bit field.
453 IN UINTN EndBit,
459 BitFieldWrite16 (IoRead16 (Port), StartBit, EndBit, Value)
475 If EndBit is greater than 15, then ASSERT().
476 If EndBit is less than StartBit, then ASSERT().
477 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
482 @param EndBit The ordinal of the most significant bit in the bit field.
494 IN UINTN EndBit,
500 BitFieldOr16 (IoRead16 (Port), StartBit, EndBit, OrData)
516 If EndBit is greater than 15, then ASSERT().
517 If EndBit is less than StartBit, then ASSERT().
518 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
523 @param EndBit The ordinal of the most significant bit in the bit field.
535 IN UINTN EndBit,
541 BitFieldAnd16 (IoRead16 (Port), StartBit, EndBit, AndData)
559 If EndBit is greater than 15, then ASSERT().
560 If EndBit is less than StartBit, then ASSERT().
561 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
562 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
567 @param EndBit The ordinal of the most significant bit in the bit field.
580 IN UINTN EndBit,
587 BitFieldAndThenOr16 (IoRead16 (Port), StartBit, EndBit, AndData, OrData)
682 the StartBit and the EndBit. The value of the bit field is returned.
686 If EndBit is greater than 31, 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.
703 IN UINTN EndBit
706 return BitFieldRead32 (IoRead32 (Port), StartBit, EndBit);
713 by the StartBit and the EndBit. All other bits in the destination I/O
719 If EndBit is greater than 31, then ASSERT().
720 If EndBit is less than StartBit, then ASSERT().
721 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
726 @param EndBit The ordinal of the most significant bit in the bit field.
738 IN UINTN EndBit,
744 BitFieldWrite32 (IoRead32 (Port), StartBit, EndBit, Value)
760 If EndBit is greater than 31, then ASSERT().
761 If EndBit is less than StartBit, then ASSERT().
762 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
767 @param EndBit The ordinal of the most significant bit in the bit field.
779 IN UINTN EndBit,
785 BitFieldOr32 (IoRead32 (Port), StartBit, EndBit, OrData)
801 If EndBit is greater than 31, then ASSERT().
802 If EndBit is less than StartBit, then ASSERT().
803 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
808 @param EndBit The ordinal of the most significant bit in the bit field.
820 IN UINTN EndBit,
826 BitFieldAnd32 (IoRead32 (Port), StartBit, EndBit, AndData)
844 If EndBit is greater than 31, then ASSERT().
845 If EndBit is less than StartBit, then ASSERT().
846 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
847 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
852 @param EndBit The ordinal of the most significant bit in the bit field.
865 IN UINTN EndBit,
872 BitFieldAndThenOr32 (IoRead32 (Port), StartBit, EndBit, AndData, OrData)
967 the StartBit and the EndBit. The value of the bit field is returned.
971 If EndBit is greater than 63, then ASSERT().
972 If EndBit is less than StartBit, then ASSERT().
977 @param EndBit The ordinal of the most significant bit in the bit field.
988 IN UINTN EndBit
991 return BitFieldRead64 (IoRead64 (Port), StartBit, EndBit);
998 by the StartBit and the EndBit. All other bits in the destination I/O
1004 If EndBit is greater than 63, then ASSERT().
1005 If EndBit is less than StartBit, then ASSERT().
1006 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1011 @param EndBit The ordinal of the most significant bit in the bit field.
1023 IN UINTN EndBit,
1029 BitFieldWrite64 (IoRead64 (Port), StartBit, EndBit, Value)
1045 If EndBit is greater than 63, then ASSERT().
1046 If EndBit is less than StartBit, then ASSERT().
1047 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1052 @param EndBit The ordinal of the most significant bit in the bit field.
1064 IN UINTN EndBit,
1070 BitFieldOr64 (IoRead64 (Port), StartBit, EndBit, OrData)
1086 If EndBit is greater than 63, then ASSERT().
1087 If EndBit is less than StartBit, then ASSERT().
1088 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1093 @param EndBit The ordinal of the most significant bit in the bit field.
1105 IN UINTN EndBit,
1111 BitFieldAnd64 (IoRead64 (Port), StartBit, EndBit, AndData)
1129 If EndBit is greater than 63, then ASSERT().
1130 If EndBit is less than StartBit, then ASSERT().
1131 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1132 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1137 @param EndBit The ordinal of the most significant bit in the bit field.
1150 IN UINTN EndBit,
1157 BitFieldAndThenOr64 (IoRead64 (Port), StartBit, EndBit, AndData, OrData)
1253 the StartBit and the EndBit. The value of the bit field is returned.
1257 If EndBit is greater than 7, then ASSERT().
1258 If EndBit is less than StartBit, then ASSERT().
1263 @param EndBit The ordinal of the most significant bit in the bit field.
1274 IN UINTN EndBit
1277 return BitFieldRead8 (MmioRead8 (Address), StartBit, EndBit);
1284 specified by the StartBit and the EndBit. All other bits in the destination
1289 If EndBit is greater than 7, then ASSERT().
1290 If EndBit is less than StartBit, then ASSERT().
1291 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1296 @param EndBit The ordinal of the most significant bit in the bit field.
1308 IN UINTN EndBit,
1314 BitFieldWrite8 (MmioRead8 (Address), StartBit, EndBit, Value)
1331 If EndBit is greater than 7, then ASSERT().
1332 If EndBit is less than StartBit, then ASSERT().
1333 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1338 @param EndBit The ordinal of the most significant bit in the bit field.
1350 IN UINTN EndBit,
1356 BitFieldOr8 (MmioRead8 (Address), StartBit, EndBit, OrData)
1373 If EndBit is greater than 7, then ASSERT().
1374 If EndBit is less than StartBit, then ASSERT().
1375 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1380 @param EndBit The ordinal of the most significant bit in the bit field.
1392 IN UINTN EndBit,
1398 BitFieldAnd8 (MmioRead8 (Address), StartBit, EndBit, AndData)
1416 If EndBit is greater than 7, then ASSERT().
1417 If EndBit is less than StartBit, then ASSERT().
1418 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1419 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1424 @param EndBit The ordinal of the most significant bit in the bit field.
1437 IN UINTN EndBit,
1444 BitFieldAndThenOr8 (MmioRead8 (Address), StartBit, EndBit, AndData, OrData)
1540 the StartBit and the EndBit. The value of the bit field is returned.
1544 If EndBit is greater than 15, then ASSERT().
1545 If EndBit is less than StartBit, then ASSERT().
1550 @param EndBit The ordinal of the most significant bit in the bit field.
1561 IN UINTN EndBit
1564 return BitFieldRead16 (MmioRead16 (Address), StartBit, EndBit);
1571 specified by the StartBit and the EndBit. All other bits in the destination
1576 If EndBit is greater than 15, then ASSERT().
1577 If EndBit is less than StartBit, then ASSERT().
1578 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1583 @param EndBit The ordinal of the most significant bit in the bit field.
1595 IN UINTN EndBit,
1601 BitFieldWrite16 (MmioRead16 (Address), StartBit, EndBit, Value)
1618 If EndBit is greater than 15, then ASSERT().
1619 If EndBit is less than StartBit, then ASSERT().
1620 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1625 @param EndBit The ordinal of the most significant bit in the bit field.
1637 IN UINTN EndBit,
1643 BitFieldOr16 (MmioRead16 (Address), StartBit, EndBit, OrData)
1660 If EndBit is greater than 15, then ASSERT().
1661 If EndBit is less than StartBit, then ASSERT().
1662 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1667 @param EndBit The ordinal of the most significant bit in the bit field.
1679 IN UINTN EndBit,
1685 BitFieldAnd16 (MmioRead16 (Address), StartBit, EndBit, AndData)
1703 If EndBit is greater than 15, then ASSERT().
1704 If EndBit is less than StartBit, then ASSERT().
1705 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1706 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1711 @param EndBit The ordinal of the most significant bit in the bit field.
1724 IN UINTN EndBit,
1731 BitFieldAndThenOr16 (MmioRead16 (Address), StartBit, EndBit, AndData, OrData)
1827 the StartBit and the EndBit. The value of the bit field is returned.
1831 If EndBit is greater than 31, then ASSERT().
1832 If EndBit is less than StartBit, then ASSERT().
1837 @param EndBit The ordinal of the most significant bit in the bit field.
1848 IN UINTN EndBit
1851 return BitFieldRead32 (MmioRead32 (Address), StartBit, EndBit);
1858 specified by the StartBit and the EndBit. All other bits in the destination
1863 If EndBit is greater than 31, then ASSERT().
1864 If EndBit is less than StartBit, then ASSERT().
1865 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1870 @param EndBit The ordinal of the most significant bit in the bit field.
1882 IN UINTN EndBit,
1888 BitFieldWrite32 (MmioRead32 (Address), StartBit, EndBit, Value)
1905 If EndBit is greater than 31, then ASSERT().
1906 If EndBit is less than StartBit, then ASSERT().
1907 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1912 @param EndBit The ordinal of the most significant bit in the bit field.
1924 IN UINTN EndBit,
1930 BitFieldOr32 (MmioRead32 (Address), StartBit, EndBit, OrData)
1947 If EndBit is greater than 31, then ASSERT().
1948 If EndBit is less than StartBit, then ASSERT().
1949 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1954 @param EndBit The ordinal of the most significant bit in the bit field.
1966 IN UINTN EndBit,
1972 BitFieldAnd32 (MmioRead32 (Address), StartBit, EndBit, AndData)
1990 If EndBit is greater than 31, then ASSERT().
1991 If EndBit is less than StartBit, then ASSERT().
1992 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1993 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
1998 @param EndBit The ordinal of the most significant bit in the bit field.
2011 IN UINTN EndBit,
2018 BitFieldAndThenOr32 (MmioRead32 (Address), StartBit, EndBit, AndData, OrData)
2114 the StartBit and the EndBit. The value of the bit field is returned.
2118 If EndBit is greater than 63, then ASSERT().
2119 If EndBit is less than StartBit, then ASSERT().
2124 @param EndBit The ordinal of the most significant bit in the bit field.
2135 IN UINTN EndBit
2138 return BitFieldRead64 (MmioRead64 (Address), StartBit, EndBit);
2145 specified by the StartBit and the EndBit. All other bits in the destination
2150 If EndBit is greater than 63, then ASSERT().
2151 If EndBit is less than StartBit, then ASSERT().
2152 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
2157 @param EndBit The ordinal of the most significant bit in the bit field.
2169 IN UINTN EndBit,
2175 BitFieldWrite64 (MmioRead64 (Address), StartBit, EndBit, Value)
2192 If EndBit is greater than 63, then ASSERT().
2193 If EndBit is less than StartBit, then ASSERT().
2194 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
2199 @param EndBit The ordinal of the most significant bit in the bit field.
2211 IN UINTN EndBit,
2217 BitFieldOr64 (MmioRead64 (Address), StartBit, EndBit, OrData)
2234 If EndBit is greater than 63, then ASSERT().
2235 If EndBit is less than StartBit, then ASSERT().
2236 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
2241 @param EndBit The ordinal of the most significant bit in the bit field.
2253 IN UINTN EndBit,
2259 BitFieldAnd64 (MmioRead64 (Address), StartBit, EndBit, AndData)
2277 If EndBit is greater than 63, then ASSERT().
2278 If EndBit is less than StartBit, then ASSERT().
2279 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
2280 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT().
2285 @param EndBit The ordinal of the most significant bit in the bit field.
2298 IN UINTN EndBit,
2305 BitFieldAndThenOr64 (MmioRead64 (Address), StartBit, EndBit, AndData, OrData)