Searched defs:last_x (Results 1 - 12 of 12) sorted by relevance

/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/chromium_org/third_party/brotli/src/woff2/
H A Dglyph.cc250 int last_x = 0; local
259 int dx = point.x - last_x;
293 last_x = point.x;
312 last_x = 0;
316 int dx = point.x - last_x;
332 last_x += dx;
H A Dwoff2_dec.cc208 int last_x = 0; local
216 int dx = point.x - last_x;
251 last_x = point.x;
271 last_x = 0;
274 int dx = points[i].x - last_x;
283 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/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/chromium_org/ash/wm/workspace/
H A Dworkspace_window_resizer.cc492 int last_x = details().initial_bounds_in_parent.right(); local
495 bounds.set_x(last_x);
498 last_x = attached_windows_[i]->bounds().right();
/external/chromium_org/skia/ext/
H A Dimage_operations_unittest.cc404 int last_x = std::min(src_w - 1, x * 2 + 1); local
410 first_x, last_x,
421 PrintPixel(src, first_x, last_x, first_y, last_y);
/external/qemu/ui/
H A Dvnc.h127 int last_x; member in struct:VncState
H A Dvnc-android.c697 int y, int last_x, int x)
703 if (!vnc_get_bit(s->dirty[y + h], last_x))
705 for (tmp_x = last_x; tmp_x < x; tmp_x++)
786 int last_x = -1; local
789 if (last_x == -1) {
790 last_x = x;
794 if (last_x != -1) {
795 int h = find_and_clear_dirty_height(&vs->server, y, last_x, x);
796 send_framebuffer_update(vs, last_x * 16, y, (x - last_x) * 1
696 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...]
/external/chromium_org/third_party/ots/src/
H A Dwoff2.cc312 int last_x = 0; local
320 int dx = point.x - last_x;
355 last_x = point.x;
375 last_x = 0;
378 int dx = points.at(i).x - last_x;
387 last_x += dx;
/external/fio/
H A Dgraph.c950 int last_x = g->xoffset + g->xdim; local
954 return (x >= first_x && x <= last_x) && (y >= first_y && y <= last_y);

Completed in 298 milliseconds