Lines Matching full:value

96  * @value: Value being written.
98 * Write an 8-bit value to an I/O port.
100 static inline void outb(uint16_t addr, uint8_t value) in outb() argument
102 qtest_outb(global_qtest, addr, value); in outb()
108 * @value: Value being written.
110 * Write a 16-bit value to an I/O port.
112 static inline void outw(uint16_t addr, uint16_t value) in outw() argument
114 qtest_outw(global_qtest, addr, value); in outw()
120 * @value: Value being written.
122 * Write a 32-bit value to an I/O port.
124 static inline void outl(uint16_t addr, uint32_t value) in outl() argument
126 qtest_outl(global_qtest, addr, value); in outl()
133 * Reads an 8-bit value from an I/O port.
135 * Returns: Value read.
146 * Reads a 16-bit value from an I/O port.
148 * Returns: Value read.
159 * Reads a 32-bit value from an I/O port.
161 * Returns: Value read.
171 * @value: Value being written.
173 * Writes an 8-bit value to guest memory.
175 static inline void writeb(uint64_t addr, uint8_t value) in writeb() argument
177 qtest_writeb(global_qtest, addr, value); in writeb()
183 * @value: Value being written.
185 * Writes a 16-bit value to guest memory.
187 static inline void writew(uint64_t addr, uint16_t value) in writew() argument
189 qtest_writew(global_qtest, addr, value); in writew()
195 * @value: Value being written.
197 * Writes a 32-bit value to guest memory.
199 static inline void writel(uint64_t addr, uint32_t value) in writel() argument
201 qtest_writel(global_qtest, addr, value); in writel()
207 * @value: Value being written.
209 * Writes a 64-bit value to guest memory.
211 static inline void writeq(uint64_t addr, uint64_t value) in writeq() argument
213 qtest_writeq(global_qtest, addr, value); in writeq()
220 * Reads an 8-bit value from guest memory.
222 * Returns: Value read.
233 * Reads a 16-bit value from guest memory.
235 * Returns: Value read.
246 * Reads a 32-bit value from guest memory.
248 * Returns: Value read.
259 * Reads a 64-bit value from guest memory.
261 * Returns: Value read.
299 * Returns: The current value of the QEMU_CLOCK_VIRTUAL in nanoseconds.
312 * Returns: The current value of the QEMU_CLOCK_VIRTUAL in nanoseconds.