Searched refs:_p (Results 1 – 8 of 8) sorted by relevance
/qemu/include/qemu/ |
H A D | bswap.h | 389 static inline void stn_## END ## _p(void *ptr, int sz, uint64_t v) \ 396 stw_ ## END ## _p(ptr, v); \ 399 stl_ ## END ## _p(ptr, v); \ 402 stq_ ## END ## _p(ptr, v); \ 408 static inline uint64_t ldn_## END ## _p(const void *ptr, int sz) \ 414 return lduw_ ## END ## _p(ptr); \ 416 return (uint32_t)ldl_ ## END ## _p(ptr); \ 418 return ldq_ ## END ## _p(ptr); \
|
/qemu/linux-user/ |
H A D | qemu.h | 229 __builtin_choose_expr(sizeof(*(hptr)) == 2, stw_##e##_p, \ 230 __builtin_choose_expr(sizeof(*(hptr)) == 4, stl_##e##_p, \ 231 __builtin_choose_expr(sizeof(*(hptr)) == 8, stq_##e##_p, abort)))) \ 241 __builtin_choose_expr(sizeof(*(hptr)) == 2, lduw_##e##_p, \ 242 __builtin_choose_expr(sizeof(*(hptr)) == 4, ldl_##e##_p, \ 243 __builtin_choose_expr(sizeof(*(hptr)) == 8, ldq_##e##_p, abort)))) \
|
/qemu/bsd-user/ |
H A D | qemu.h | 314 __builtin_choose_expr(sizeof(*(hptr)) == 2, stw_##e##_p, \ 315 __builtin_choose_expr(sizeof(*(hptr)) == 4, stl_##e##_p, \ 316 __builtin_choose_expr(sizeof(*(hptr)) == 8, stq_##e##_p, abort)))) \ 326 __builtin_choose_expr(sizeof(*(hptr)) == 2, lduw_##e##_p, \ 327 __builtin_choose_expr(sizeof(*(hptr)) == 4, ldl_##e##_p, \ 328 __builtin_choose_expr(sizeof(*(hptr)) == 8, ldq_##e##_p, abort)))) \
|
/qemu/tests/qemu-iotests/ |
H A D | iotests.py | 379 self._p = subprocess.Popen(self.args, stdin=subprocess.PIPE, 383 out = self._p.stdout.read(9) 387 out += self._p.stdout.read() 388 self._p.wait(timeout=1) 392 self._p.communicate('q\n') 400 c = self._p.stdout.read(1) 416 self._p.stdin.write(cmd + '\n') 417 self._p.stdin.flush() 426 _p: 'Optional[subprocess.Popen[bytes]]' = None variable in QemuStorageDaemon 443 self._p = subprocess.Popen(all_args) [all …]
|
/qemu/docs/devel/ |
H A D | loads-stores.rst | 16 ``ld*_p and st*_p`` 27 load: ``ld{sign}{size}_{endian}_p(ptr)`` 29 store: ``st{size}_{endian}_p(ptr, val)`` 55 load: ``ldn{endian}_p(ptr, sz)`` 60 store: ``stn{endian}_p(ptr, sz, val)`` 67 - ``\<ld[us]\?[bwlq]\(_[hbl]e\)\?_p\>`` 68 - ``\<st[bwlq]\(_[hbl]e\)\?_p\>`` 69 - ``\<st24\(_[hbl]e\)\?_p\>`` 70 - ``\<ldn_\([hbl]e\)\?_p\>`` 71 - ``\<stn_\([hbl]e\)\?_p\>``
|
/qemu/target/riscv/ |
H A D | cpu_cfg.h | 50 static inline bool has_ ## ext ## _p(const RISCVCPUConfig *cfg) \
|
H A D | vector_helper.c | 183 *cur = (ETYPE)LDSUF##_p(host); \ 204 STSUF##_p(host, data); \
|
/qemu/include/exec/ |
H A D | memory_ldst_cached.h.inc | 25 glue(glue(ld, size), glue(ENDIANNESS, _p)) 72 glue(glue(st, size), glue(ENDIANNESS, _p))
|