Lines Matching refs:Value
57 Reads the 8-bit I/O port specified by Port. The 8-bit read value is returned.
65 @return The value read.
74 UINT8 Value;
77 Value = (UINT8)_inp ((UINT16)Port);
79 return Value;
85 Writes the 8-bit I/O port specified by Port with the value specified by Value
86 and returns Value. This function must guarantee that all I/O read and write
92 @param Value The value to write to the I/O port.
94 @return The value written to the I/O port.
101 IN UINT8 Value
105 (UINT8)_outp ((UINT16)Port, Value);
107 return Value;
113 Reads the 16-bit I/O port specified by Port. The 16-bit read value is returned.
122 @return The value read.
131 UINT16 Value;
135 Value = _inpw ((UINT16)Port);
137 return Value;
143 Writes the 16-bit I/O port specified by Port with the value specified by Value
144 and returns Value. This function must guarantee that all I/O read and write
151 @param Value The value to write to the I/O port.
153 @return The value written to the I/O port.
160 IN UINT16 Value
165 _outpw ((UINT16)Port, Value);
167 return Value;
173 Reads the 32-bit I/O port specified by Port. The 32-bit read value is returned.
182 @return The value read.
191 UINT32 Value;
195 Value = _inpd ((UINT16)Port);
197 return Value;
203 Writes the 32-bit I/O port specified by Port with the value specified by Value
204 and returns Value. This function must guarantee that all I/O read and write
211 @param Value The value to write to the I/O port.
213 @return The value written to the I/O port.
220 IN UINT32 Value
225 _outpd ((UINT16)Port, Value);
227 return Value;