Home
last modified time | relevance | path

Searched refs:_x (Results 1 – 9 of 9) sorted by relevance

/qemu/include/qemu/
H A Dbswap.h5 #define bswap16(_x) __builtin_bswap16(_x) argument
7 #define bswap32(_x) __builtin_bswap32(_x) argument
9 #define bswap64(_x) __builtin_bswap64(_x) argument
151 # define const_le64(_x) \ argument
152 ((((_x) & 0x00000000000000ffULL) << 56) | \
153 (((_x) & 0x000000000000ff00ULL) << 40) | \
154 (((_x) & 0x0000000000ff0000ULL) << 24) | \
155 (((_x) & 0x00000000ff000000ULL) << 8) | \
156 (((_x) & 0x000000ff00000000ULL) >> 8) | \
157 (((_x) & 0x0000ff0000000000ULL) >> 24) | \
[all …]
/qemu/include/hw/usb/
H A Ddwc2-regs.h122 #define GUSBCFG_TOUTCAL(_x) ((_x) << 0) argument
130 #define GRSTCTL_TXFNUM(_x) ((_x) << 6) argument
438 #define FIFOSIZE_DEPTH_GET(_x) (((_x) >> 16) & 0xffff) argument
447 #define DCFG_EPMISCNT(_x) ((_x) << 18) argument
452 #define DCFG_PERFRINT(_x) ((_x) << 11) argument
456 #define DCFG_DEVADDR(_x) ((_x) << 4) argument
483 #define DSTS_SOFFN(_x) ((_x) << 8) argument
519 #define DAINT_OUTEP(_x) (1 << ((_x) + 16)) argument
520 #define DAINT_INEP(_x) (1 << (_x)) argument
560 #define DXEPCTL_TXFNUM(_x) ((_x) << 22) argument
[all …]
/qemu/include/hw/xen/interface/io/
H A Dring.h39 #define __RD2(_x) (((_x) & 0x00000002) ? 0x2 : ((_x) & 0x1)) argument
40 #define __RD4(_x) (((_x) & 0x0000000c) ? __RD2((_x)>>2)<<2 : __RD2(_x)) argument
41 #define __RD8(_x) (((_x) & 0x000000f0) ? __RD4((_x)>>4)<<4 : __RD4(_x)) argument
42 #define __RD16(_x) (((_x) & 0x0000ff00) ? __RD8((_x)>>8)<<8 : __RD8(_x)) argument
43 #define __RD32(_x) (((_x) & 0xffff0000) ? __RD16((_x)>>16)<<16 : __RD16(_x)) argument
/qemu/replay/
H A Dreplay.c46 #define ASYNC_EVENT(_x) case REPLAY_ASYNC_EVENT_ ## _x: return "ASYNC_EVENT_"#_x in replay_async_event_name() argument
63 #define CLOCK_EVENT(_x) case REPLAY_CLOCK_ ## _x: return "CLOCK_" #_x in replay_clock_event_name() argument
76 #define SHUTDOWN_EVENT(_x) case SHUTDOWN_CAUSE_ ## _x: return "SHUTDOWN_CAUSE_" #_x in replay_shutdown_event_name() argument
97 #define CHECKPOINT_EVENT(_x) case CHECKPOINT_ ## _x: return "CHECKPOINT_" #_x in replay_checkpoint_event_name() argument
117 #define EVENT(_x) case EVENT_ ## _x: return "EVENT_"#_x in replay_event_name() argument
/qemu/hw/net/
H A Dtulip.h11 #define CSR(_x) ((_x) << 3) argument
/qemu/hw/display/
H A Dartist.c162 #define REG_NAME(_x) case _x: return " "#_x; argument
H A Dqxl.c56 #define QXL_MODE(_x, _y, _b, _o) \ argument
57 { .x_res = _x, \
60 .stride = (_x) * (_b) / 8, \
61 .x_mili = PIXEL_SIZE * (_x), \
/qemu/python/qemu/qmp/
H A Dqmp_tui.py529 _x: int, _y: int, focus: bool) -> None:
/qemu/target/loongarch/
H A Ddisas.c1714 output_##type ## _x(ctx, a, #insn); \ in LSX_FCMP_INSN()