Lines Matching defs:AndData

59   the read result and the value specified by AndData, and writes the result to
67 @param AndData The value to AND with the read value from the I/O port.
76 IN UINT8 AndData
79 return IoWrite8 (Port, (UINT8) (IoRead8 (Port) & AndData));
87 the read result and the value specified by AndData, performs a bitwise OR
96 @param AndData The value to AND with the read value from the I/O port.
106 IN UINT8 AndData,
110 return IoWrite8 (Port, (UINT8) ((IoRead8 (Port) & AndData) | OrData));
226 the read result and the value specified by AndData, and writes the result to
229 are serialized. Extra bits left in AndData are stripped.
241 @param AndData The value to AND with the read value from the I/O port.
252 IN UINT8 AndData
257 BitFieldAnd8 (IoRead8 (Port), StartBit, EndBit, AndData)
268 AndData, and writes the result to the 8-bit I/O port specified by Port. The
271 AndData and OrData are stripped.
283 @param AndData The value to AND with the read value from the I/O port.
295 IN UINT8 AndData,
301 BitFieldAndThenOr8 (IoRead8 (Port), StartBit, EndBit, AndData, OrData)
339 the read result and the value specified by AndData, and writes the result to
348 @param AndData The value to AND with the read value from the I/O port.
357 IN UINT16 AndData
360 return IoWrite16 (Port, (UINT16) (IoRead16 (Port) & AndData));
368 the read result and the value specified by AndData, performs a bitwise OR
378 @param AndData The value to AND with the read value from the I/O port.
388 IN UINT16 AndData,
392 return IoWrite16 (Port, (UINT16) ((IoRead16 (Port) & AndData) | OrData));
512 the read result and the value specified by AndData, and writes the result to
515 are serialized. Extra bits left in AndData are stripped.
528 @param AndData The value to AND with the read value from the I/O port.
539 IN UINT16 AndData
544 BitFieldAnd16 (IoRead16 (Port), StartBit, EndBit, AndData)
555 AndData, and writes the result to the 16-bit I/O port specified by Port. The
558 AndData and OrData are stripped.
571 @param AndData The value to AND with the read value from the I/O port.
583 IN UINT16 AndData,
589 BitFieldAndThenOr16 (IoRead16 (Port), StartBit, EndBit, AndData, OrData)
627 the read result and the value specified by AndData, and writes the result to
636 @param AndData The value to AND with the read value from the I/O port.
645 IN UINT32 AndData
648 return IoWrite32 (Port, IoRead32 (Port) & AndData);
656 the read result and the value specified by AndData, performs a bitwise OR
666 @param AndData The value to AND with the read value from the I/O port.
676 IN UINT32 AndData,
680 return IoWrite32 (Port, (IoRead32 (Port) & AndData) | OrData);
800 the read result and the value specified by AndData, and writes the result to
803 are serialized. Extra bits left in AndData are stripped.
816 @param AndData The value to AND with the read value from the I/O port.
827 IN UINT32 AndData
832 BitFieldAnd32 (IoRead32 (Port), StartBit, EndBit, AndData)
843 AndData, and writes the result to the 32-bit I/O port specified by Port. The
846 AndData and OrData are stripped.
859 @param AndData The value to AND with the read value from the I/O port.
871 IN UINT32 AndData,
877 BitFieldAndThenOr32 (IoRead32 (Port), StartBit, EndBit, AndData, OrData)
915 the read result and the value specified by AndData, and writes the result to
924 @param AndData The value to AND with the read value from the I/O port.
933 IN UINT64 AndData
936 return IoWrite64 (Port, IoRead64 (Port) & AndData);
944 the read result and the value specified by AndData, performs a bitwise OR
954 @param AndData The value to AND with the read value from the I/O port.
964 IN UINT64 AndData,
968 return IoWrite64 (Port, (IoRead64 (Port) & AndData) | OrData);
1088 the read result and the value specified by AndData, and writes the result to
1091 are serialized. Extra bits left in AndData are stripped.
1104 @param AndData The value to AND with the read value from the I/O port.
1115 IN UINT64 AndData
1120 BitFieldAnd64 (IoRead64 (Port), StartBit, EndBit, AndData)
1131 AndData, and writes the result to the 64-bit I/O port specified by Port. The
1134 AndData and OrData are stripped.
1147 @param AndData The value to AND with the read value from the I/O port.
1159 IN UINT64 AndData,
1165 BitFieldAndThenOr64 (IoRead64 (Port), StartBit, EndBit, AndData, OrData)
1202 between the read result and the value specified by AndData, and writes the
1210 @param AndData The value to AND with the read value from the MMIO register.
1219 IN UINT8 AndData
1222 return MmioWrite8 (Address, (UINT8) (MmioRead8 (Address) & AndData));
1230 between the read result and the value specified by AndData, performs a
1240 @param AndData The value to AND with the read value from the MMIO register.
1250 IN UINT8 AndData,
1254 return MmioWrite8 (Address, (UINT8) ((MmioRead8 (Address) & AndData) | OrData));
1371 between the read result and the value specified by AndData, and writes the
1374 read and write operations are serialized. Extra bits left in AndData are
1387 @param AndData The value to AND with read value from the MMIO register.
1398 IN UINT8 AndData
1403 BitFieldAnd8 (MmioRead8 (Address), StartBit, EndBit, AndData)
1414 specified by AndData, and writes the result to the 8-bit MMIO register
1417 serialized. Extra bits left in both AndData and OrData are stripped.
1429 @param AndData The value to AND with read value from the MMIO register.
1441 IN UINT8 AndData,
1447 BitFieldAndThenOr8 (MmioRead8 (Address), StartBit, EndBit, AndData, OrData)
1485 between the read result and the value specified by AndData, and writes the
1494 @param AndData The value to AND with the read value from the MMIO register.
1503 IN UINT16 AndData
1506 return MmioWrite16 (Address, (UINT16) (MmioRead16 (Address) & AndData));
1514 between the read result and the value specified by AndData, performs a
1524 @param AndData The value to AND with the read value from the MMIO register.
1534 IN UINT16 AndData,
1538 return MmioWrite16 (Address, (UINT16) ((MmioRead16 (Address) & AndData) | OrData));
1658 between the read result and the value specified by AndData, and writes the
1661 read and write operations are serialized. Extra bits left in AndData are
1675 @param AndData The value to AND with read value from the MMIO register.
1686 IN UINT16 AndData
1691 BitFieldAnd16 (MmioRead16 (Address), StartBit, EndBit, AndData)
1702 specified by AndData, and writes the result to the 16-bit MMIO register
1705 serialized. Extra bits left in both AndData and OrData are stripped.
1718 @param AndData The value to AND with read value from the MMIO register.
1730 IN UINT16 AndData,
1736 BitFieldAndThenOr16 (MmioRead16 (Address), StartBit, EndBit, AndData, OrData)
1774 between the read result and the value specified by AndData, and writes the
1783 @param AndData The value to AND with the read value from the MMIO register.
1792 IN UINT32 AndData
1795 return MmioWrite32 (Address, MmioRead32 (Address) & AndData);
1803 between the read result and the value specified by AndData, performs a
1813 @param AndData The value to AND with the read value from the MMIO register.
1823 IN UINT32 AndData,
1827 return MmioWrite32 (Address, (MmioRead32 (Address) & AndData) | OrData);
1947 between the read result and the value specified by AndData, and writes the
1950 read and write operations are serialized. Extra bits left in AndData are
1964 @param AndData The value to AND with read value from the MMIO register.
1975 IN UINT32 AndData
1980 BitFieldAnd32 (MmioRead32 (Address), StartBit, EndBit, AndData)
1991 specified by AndData, and writes the result to the 32-bit MMIO register
1994 serialized. Extra bits left in both AndData and OrData are stripped.
2007 @param AndData The value to AND with read value from the MMIO register.
2019 IN UINT32 AndData,
2025 BitFieldAndThenOr32 (MmioRead32 (Address), StartBit, EndBit, AndData, OrData)
2063 between the read result and the value specified by AndData, and writes the
2072 @param AndData The value to AND with the read value from the MMIO register.
2081 IN UINT64 AndData
2084 return MmioWrite64 (Address, MmioRead64 (Address) & AndData);
2092 between the read result and the value specified by AndData, performs a
2102 @param AndData The value to AND with the read value from the MMIO register.
2112 IN UINT64 AndData,
2116 return MmioWrite64 (Address, (MmioRead64 (Address) & AndData) | OrData);
2236 between the read result and the value specified by AndData, and writes the
2239 read and write operations are serialized. Extra bits left in AndData are
2253 @param AndData The value to AND with read value from the MMIO register.
2264 IN UINT64 AndData
2269 BitFieldAnd64 (MmioRead64 (Address), StartBit, EndBit, AndData)
2280 specified by AndData, and writes the result to the 64-bit MMIO register
2283 serialized. Extra bits left in both AndData and OrData are stripped.
2296 @param AndData The value to AND with read value from the MMIO register.
2308 IN UINT64 AndData,
2314 BitFieldAndThenOr64 (MmioRead64 (Address), StartBit, EndBit, AndData, OrData)