Lines Matching defs:AndData

352   performs a bitwise AND between the read result and the value specified by AndData,
359 @param AndData The value to AND with the PCI configuration register.
368 IN UINT8 AndData
371 return PciSegmentWrite8 (Address, (UINT8) (PciSegmentRead8 (Address) & AndData));
379 performs a bitwise AND between the read result and the value specified by AndData,
388 @param AndData The value to AND with the PCI configuration register.
398 IN UINT8 AndData,
402 return PciSegmentWrite8 (Address, (UINT8) ((PciSegmentRead8 (Address) & AndData) | OrData));
521 bitwise AND between the read result and the value specified by AndData, and
525 serialized. Extra left bits in AndData are stripped.
537 @param AndData The value to AND with the PCI configuration register.
548 IN UINT8 AndData
553 BitFieldAnd8 (PciSegmentRead8 (Address), StartBit, EndBit, AndData)
564 the value specified by AndData, and writes the result to the 8-bit PCI
567 read and write operations are serialized. Extra left bits in both AndData and
580 @param AndData The value to AND with the PCI configuration register.
592 IN UINT8 AndData,
598 BitFieldAndThenOr8 (PciSegmentRead8 (Address), StartBit, EndBit, AndData, OrData)
689 performs a bitwise AND between the read result and the value specified by AndData,
698 @param AndData The value to AND with the PCI configuration register.
707 IN UINT16 AndData
710 return PciSegmentWrite16 (Address, (UINT16) (PciSegmentRead16 (Address) & AndData));
718 performs a bitwise AND between the read result and the value specified by AndData,
728 @param AndData The value to AND with the PCI configuration register.
738 IN UINT16 AndData,
742 return PciSegmentWrite16 (Address, (UINT16) ((PciSegmentRead16 (Address) & AndData) | OrData));
875 @param AndData The value to AND with the read value from the PCI configuration register.
886 IN UINT16 AndData
891 BitFieldAnd16 (PciSegmentRead16 (Address), StartBit, EndBit, AndData)
902 the value specified by AndData, and writes the result to the 16-bit PCI
905 read and write operations are serialized. Extra left bits in both AndData and
918 @param AndData The value to AND with the PCI configuration register.
930 IN UINT16 AndData,
936 BitFieldAndThenOr16 (PciSegmentRead16 (Address), StartBit, EndBit, AndData, OrData)
1024 performs a bitwise AND between the read result and the value specified by AndData,
1033 @param AndData The value to AND with the PCI configuration register.
1042 IN UINT32 AndData
1045 return PciSegmentWrite32 (Address, PciSegmentRead32 (Address) & AndData);
1053 performs a bitwise AND between the read result and the value specified by AndData,
1063 @param AndData The value to AND with the PCI configuration register.
1073 IN UINT32 AndData,
1077 return PciSegmentWrite32 (Address, (PciSegmentRead32 (Address) & AndData) | OrData);
1199 AND between the read result and the value specified by AndData, and writes the result
1202 read and write operations are serialized. Extra left bits in AndData are stripped.
1215 @param AndData The value to AND with the PCI configuration register.
1226 IN UINT32 AndData
1231 BitFieldAnd32 (PciSegmentRead32 (Address), StartBit, EndBit, AndData)
1242 the value specified by AndData, and writes the result to the 32-bit PCI
1245 read and write operations are serialized. Extra left bits in both AndData and
1258 @param AndData The value to AND with the PCI configuration register.
1270 IN UINT32 AndData,
1276 BitFieldAndThenOr32 (PciSegmentRead32 (Address), StartBit, EndBit, AndData, OrData)