Lines Matching refs:Value
21 Reads the 8-bit I/O port specified by Port. The 8-bit read value is returned.
29 @return The value read.
52 Writes the 8-bit I/O port specified by Port with the value specified by Value
53 and returns Value. This function must guarantee that all I/O read and write
59 @param Value The value to write to the I/O port.
61 @return The value written the I/O port.
68 IN UINT8 Value
72 mov al, byte ptr [Value]
76 return Value;
82 Reads the 16-bit I/O port specified by Port. The 16-bit read value is returned.
91 @return The value read.
116 Writes the 16-bit I/O port specified by Port with the value specified by Value
117 and returns Value. This function must guarantee that all I/O read and write
124 @param Value The value to write to the I/O port.
126 @return The value written the I/O port.
133 IN UINT16 Value
139 mov ax, word ptr [Value]
144 return Value;
150 Reads the 32-bit I/O port specified by Port. The 32-bit read value is returned.
159 @return The value read.
184 Writes the 32-bit I/O port specified by Port with the value specified by Value
185 and returns Value. This function must guarantee that all I/O read and write
192 @param Value The value to write to the I/O port.
194 @return The value written the I/O port.
201 IN UINT32 Value
207 mov eax, dword ptr [Value]
212 return Value;