| /qemu/hw/input/ |
| A D | adb-mouse.c | 43 int dx, dy, dz; member 110 int dx, dy; in adb_mouse_poll() local 117 dx = s->dx; in adb_mouse_poll() 118 if (dx < -63) { in adb_mouse_poll() 119 dx = -63; in adb_mouse_poll() 121 dx = 63; in adb_mouse_poll() 131 s->dx -= dx; in adb_mouse_poll() 135 dx &= 0x7f; in adb_mouse_poll() 142 dx |= 0x80; in adb_mouse_poll() 146 obuf[1] = dx; in adb_mouse_poll() [all …]
|
| A D | hid.c | 360 int dx, dy, dz, l; in hid_pointer_poll() local 374 dx = int_clamp(e->xdx, -127, 127); in hid_pointer_poll() 376 e->xdx -= dx; in hid_pointer_poll() 379 dx = e->xdx; in hid_pointer_poll() 402 buf[l++] = dx; in hid_pointer_poll() 417 buf[l++] = dx & 0xff; in hid_pointer_poll() 420 buf[l++] = dx >> 8; in hid_pointer_poll()
|
| /qemu/pc-bios/optionrom/ |
| A D | optionrom.h | 63 mov $BIOS_CFG_IOPORT_CFG, %dx 64 outw %ax, (%dx) 65 mov $BIOS_CFG_IOPORT_DATA, %dx 66 inb (%dx), %al 68 inb (%dx), %al 70 inb (%dx), %al 72 inb (%dx), %al 89 mov $BIOS_CFG_DMA_ADDR_HIGH, %dx 90 outl %eax, (%dx) 103 mov $BIOS_CFG_DMA_ADDR_LOW, %dx [all …]
|
| A D | linuxboot.S | 106 xor %dx, %dx 112 or %dx, %dx 115 mov %bx, %dx 118 or %dx, %dx 126 addw $16777216 >> 16, %dx /* add 16 MB */ 127 movzwl %dx, %edi
|
| A D | linuxboot_dma.c | 100 uint16_t ax, bx, cx, dx; in get_e801_addr() local 104 : "=a"(ax), "=b"(bx), "=c"(cx), "=d"(dx) in get_e801_addr() 110 if (cx == 0 && dx == 0) { in get_e801_addr() 112 dx = bx; in get_e801_addr() 115 if (dx) { in get_e801_addr() 119 ret = ((uint32_t)dx + 256 /* 16M in 64K units */) << 16; in get_e801_addr()
|
| /qemu/tests/tcg/i386/ |
| A D | test-i386-vm86.S | 8 movw $GET_OFFSET(hello_world), %dx 23 movw $GET_OFFSET(IF_msg), %dx 28 popw %dx 34 popw %dx 45 movw $GET_OFFSET(IF_msg1), %dx 58 popw %dx 77 pop %dx 82 movw 4(%bx), %dx 86 movw $GET_OFFSET(int90_msg), %dx
|
| /qemu/hw/usb/ |
| A D | dev-wacom.c | 46 int dx, dy, dz, buttons_state; member 196 s->dx += dx1; in usb_mouse_event() 230 int dx, dy, dz, b, l; in usb_mouse_poll() local 239 dx = int_clamp(s->dx, -128, 127); in usb_mouse_poll() 243 s->dx -= dx; in usb_mouse_poll() 256 buf[1] = dx; in usb_mouse_poll() 307 s->dx = 0; in usb_wacom_handle_reset()
|
| /qemu/tests/migration/i386/ |
| A D | a-b-bootblock.S | 59 mov $0x3f8,%dx 60 outb %al,%dx 86 mov $0x3f8,%dx 87 outb %al,%dx 108 mov $(ACPI_PM_BASE + PM1A_CNT_OFFSET),%dx 109 outw %ax,%dx
|
| /qemu/ui/ |
| A D | vnc-enc-tight.c | 141 int x, y, d, dx; in tight_detect_smooth_image24() local 163 for (dx = 1; dx <= VNC_TIGHT_DETECT_SUBROW_WIDTH; dx++) { in tight_detect_smooth_image24() 243 for (dx = 1; dx <= VNC_TIGHT_DETECT_SUBROW_WIDTH; \ 682 int dx, dy; in check_solid_tile32() local 692 for (dx = 0; dx < w; dx++) { in check_solid_tile32() 730 for (dx = x + dw; dx < x + w_prev;) { in find_best_solid_area() 736 dx += dw; in find_best_solid_area() 1540 int dx, dy; in send_rect_simple() local 1552 for (dx = 0; dx < w; dx += max_width) { in send_rect_simple() 1585 for (dx = x; dx < x + w; dx += VNC_TIGHT_MAX_SPLIT_TILE_SIZE) { in find_large_solid_color_rect() [all …]
|
| A D | trace-events | 9 console_txt_new(int w, int h) "%dx%d" 12 displaysurface_create(int w, int h) "%dx%d" 107 qemu_spice_display_update(int qid, uint32_t x, uint32_t y, uint32_t w, uint32_t h) "%d +%d+%d %dx%d" 108 qemu_spice_display_surface(int qid, uint32_t w, uint32_t h, int fast) "%d %dx%d, fast %d" 110 qemu_spice_ui_info(int qid, uint32_t width, uint32_t height) "%d %dx%d" 112 qemu_spice_gl_surface(int qid, uint32_t w, uint32_t h, uint32_t fourcc) "%d %dx%d, fourcc 0x%x" 114 qemu_spice_gl_scanout_texture(int qid, uint32_t w, uint32_t h, uint32_t fourcc) "%d %dx%d, fourcc 0… 116 qemu_spice_gl_forward_dmabuf(int qid, uint32_t width, uint32_t height) "%d %dx%d" 117 qemu_spice_gl_render_dmabuf(int qid, uint32_t width, uint32_t height) "%d %dx%d" 118 qemu_spice_gl_update(int qid, uint32_t x, uint32_t y, uint32_t w, uint32_t h) "%d +%d+%d %dx%d" [all …]
|
| A D | spice-input.c | 143 static void mouse_motion(SpiceMouseInstance *sin, int dx, int dy, int dz, in mouse_motion() argument 148 qemu_input_queue_rel(NULL, INPUT_AXIS_X, dx); in mouse_motion()
|
| A D | ui-hmp-cmds.c | 33 int dx, dy, dz, button; in hmp_mouse_move() local 38 dx = strtol(dx_str, NULL, 0); in hmp_mouse_move() 40 qemu_input_queue_rel(NULL, INPUT_AXIS_X, dx); in hmp_mouse_move()
|
| A D | dbus-console.c | 375 int dx, int dy) in dbus_mouse_rel_motion() argument 377 trace_dbus_mouse_rel_motion(dx, dy); in dbus_mouse_rel_motion() 387 qemu_input_queue_rel(ddc->dcl.con, INPUT_AXIS_X, dx); in dbus_mouse_rel_motion()
|
| A D | sdl2.c | 306 static void sdl_send_mouse_event(struct sdl2_console *scon, int dx, int dy, in sdl_send_mouse_event() argument 334 dx = x; in sdl_send_mouse_event() 337 qemu_input_queue_rel(scon->dcl.con, INPUT_AXIS_X, dx); in sdl_send_mouse_event()
|
| /qemu/chardev/ |
| A D | msmouse.c | 94 int dx, dy, count = 3; in msmouse_queue_event() local 96 dx = mouse->axis[INPUT_AXIS_X]; in msmouse_queue_event() 103 bytes[0] |= (MSMOUSE_HI2(dy) << 2) | MSMOUSE_HI2(dx); in msmouse_queue_event() 104 bytes[1] |= MSMOUSE_LO6(dx); in msmouse_queue_event()
|
| /qemu/include/ui/ |
| A D | rect.h | 26 int16_t dx, int16_t dy) in qemu_rect_translate() argument 28 rect->x += dx; in qemu_rect_translate()
|
| /qemu/hw/display/ |
| A D | artist.c | 496 int dx, dy, t, e, x, y, incy, diago, horiz; in draw_line() local 511 dx = x2 - x1; in draw_line() 513 dx = x1 - x2; in draw_line() 522 if (dy > dx) { in draw_line() 531 t = dx; in draw_line() 532 dx = dy; in draw_line() 549 diago = (dy - dx) << 1; in draw_line() 550 e = (dy << 1) - dx; in draw_line()
|
| A D | trace-events | 8 xenfb_mouse_event(void *opaque, int dx, int dy, int dz, int button_state, int abs_pointer_wanted) "… 23 vmware_setmode(uint32_t w, uint32_t h, uint32_t bpp) "%dx%d @ %d bpp" 123 …idth, int32_t height, int32_t stride, int32_t bytes_pp, int32_t bits_pp) "%dx%d, stride %d, bpp %d…
|
| A D | cirrus_vga.c | 733 int dx = 0, dy = 0; in cirrus_do_copy() local 752 dx = (dst % ABS(s->cirrus_blt_dstpitch)) / depth; in cirrus_do_copy() 763 dx -= (s->cirrus_blt_width / depth) - 1; in cirrus_do_copy() 769 if (sx >= 0 && sy >= 0 && dx >= 0 && dy >= 0 && in cirrus_do_copy() 771 (dx + w) <= width && (dy + h) <= height) { in cirrus_do_copy() 782 dpy_gfx_update(s->vga.con, dx, dy, in cirrus_do_copy()
|
| A D | vmware_vga.c | 620 int x, y, dx, dy, width, height; in vmsvga_fifo_run() local 671 dx = vmsvga_fifo_read(s); in vmsvga_fifo_run() 676 if (vmsvga_copy_rect(s, x, y, dx, dy, width, height) == 0) { in vmsvga_fifo_run()
|
| /qemu/tests/tcg/i386/system/ |
| A D | boot.S | 87 out %ax,%dx
|
| /qemu/pc-bios/ |
| A D | qemu_vga.ndrv | 94 Current setting: %dx%dx%d 104 Set Mode: %dx%dx%d has %d pages
|
| /qemu/tests/tcg/x86_64/system/ |
| A D | boot.S | 135 out %ax,%dx
|
| /qemu/hw/arm/ |
| A D | musicpal.c | 143 int dx, dy; in set_lcd_pixel32() local 149 for (dx = 0; dx < 3; dx++, pixel++) { in set_lcd_pixel32()
|
| /qemu/hw/char/ |
| A D | trace-events | 53 escc_sunmouse_event(int dx, int dy, int buttons_state) "dx=%d dy=%d buttons=0x%01x"
|