Lines Matching refs:Value
22 Reads the 8-bit MMIO register specified by Address. The 8-bit read value is
30 @return The value read.
39 UINT8 Value;
41 Value = *(volatile UINT8*)Address;
42 return Value;
48 Reads the 16-bit MMIO register specified by Address. The 16-bit read value is
57 @return The value read.
66 UINT16 Value;
69 Value = *(volatile UINT16*)Address;
70 return Value;
76 Writes the 16-bit MMIO register specified by Address with the value specified
77 by Value and returns Value. This function must guarantee that all MMIO read
84 @param Value The value to write to the MMIO register.
86 @return Value.
93 IN UINT16 Value
97 *(volatile UINT16*)Address = Value;
98 return Value;
104 Reads the 32-bit MMIO register specified by Address. The 32-bit read value is
113 @return The value read.
122 UINT32 Value;
125 Value = *(volatile UINT32*)Address;
127 return Value;
133 Writes the 32-bit MMIO register specified by Address with the value specified
134 by Value and returns Value. This function must guarantee that all MMIO read
141 @param Value The value to write to the MMIO register.
143 @return Value.
150 IN UINT32 Value
154 *(volatile UINT32*)Address = Value;
155 return Value;
161 OR the 32-bit MMIO register specified by Address with the value specified
162 by Value and returns Value. This function must guarantee that all MMIO read
169 @param Value The value to OR to the MMIO register.
171 @return Value.