Searched defs:last_x (Results 1 - 8 of 8) sorted by path

/external/chromium/chrome/browser/notifications/
H A Ddesktop_notifications_unittest.cc392 int last_x = -1; local
397 if (last_x > 0)
398 EXPECT_EQ(last_x, current_x);
408 last_x = current_x;
416 last_x = -1;
423 if (last_x > 0)
424 EXPECT_EQ(last_x, current_x);
434 last_x = current_x;
444 EXPECT_LT(current_x, last_x);
/external/chromium/chrome/browser/ui/gtk/
H A Dmenu_bar_helper.cc123 gint last_x = x; local
126 last_button, button, last_x, last_y, &x, &y)) {
/external/qemu/distrib/sdl-1.2.15/src/video/directfb/
H A DSDL_DirectFB_events.c84 static int last_x, last_y; local
86 last_x = evt.axisabs;
89 posted += SDL_PrivateMouseMotion(0, 0, last_x, last_y);
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
H A DSDL_fbelo.c83 static int last_x = 0; local
95 if((SDL_abs(x - last_x) > ELO_SNAP_SIZE) || (SDL_abs(y - last_y) > ELO_SNAP_SIZE)) {
100 *dx = last_x;
104 last_x = *dx;
/external/qemu/distrib/sdl-1.2.15/src/video/riscos/
H A DSDL_riscosevents.c251 static Sint16 last_x = -1, last_y = -1; variable
272 if (new_x != last_x || new_y != last_y || last_buttons != regs.r[2])
303 if (last_x != new_x || last_y != new_y)
313 last_x = topLeftX + (centre_x << this->hidden->xeig);
324 block[1] = last_x & 0xFF;
325 block[2] = (last_x >> 8) & 0xFF;
336 last_x = new_x;
/external/qemu/
H A Dvnc-android.c695 int y, int last_x, int x)
701 if (!vnc_get_bit(s->dirty[y + h], last_x))
703 for (tmp_x = last_x; tmp_x < x; tmp_x++)
784 int last_x = -1; local
787 if (last_x == -1) {
788 last_x = x;
792 if (last_x != -1) {
793 int h = find_and_clear_dirty_height(&vs->server, y, last_x, x);
794 send_framebuffer_update(vs, last_x * 16, y, (x - last_x) * 1
694 find_and_clear_dirty_height(struct VncSurface *s, int y, int last_x, int x) argument
[all...]
H A Dvnc.c689 int y, int last_x, int x)
695 if (!vnc_get_bit(s->dirty[y + h], last_x))
697 for (tmp_x = last_x; tmp_x < x; tmp_x++)
778 int last_x = -1; local
781 if (last_x == -1) {
782 last_x = x;
786 if (last_x != -1) {
787 int h = find_and_clear_dirty_height(&vs->server, y, last_x, x);
788 send_framebuffer_update(vs, last_x * 16, y, (x - last_x) * 1
688 find_and_clear_dirty_height(struct VncSurface *s, int y, int last_x, int x) argument
[all...]
H A Dvnc.h127 int last_x; member in struct:VncState

Completed in 210 milliseconds