Home
last modified time | relevance | path

Searched refs:deltax (Results 1 – 6 of 6) sorted by relevance

/external/libvpx/vp8/common/
Dtextblit.c64 int deltax, deltay; in vp8_blit_line() local
91 deltax = x1 - x0; in vp8_blit_line()
93 error = deltax / 2; in vp8_blit_line()
112 error = error + deltax; in vp8_blit_line()
126 error = error + deltax; in vp8_blit_line()
/external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
DSDL_amigaevents.c56 int deltax, deltay;
61 deltax = xevent->xmotion.x - mouse_last.x;
64 printf("Warped mouse motion: %d,%d\n", deltax, deltay);
68 posted = SDL_PrivateMouseMotion(0, 1, deltax, deltay);
76 deltax = xevent->xmotion.x - mouse_last.x;
79 printf("Extra mouse motion: %d,%d\n", deltax, deltay);
83 posted += SDL_PrivateMouseMotion(0, 1, deltax, deltay);
/external/quake/quake/src/QW/server/
Dsv_move.c286 float deltax,deltay; in SV_NewChaseDir() local
293 deltax = enemy->v.origin[0] - actor->v.origin[0]; in SV_NewChaseDir()
295 if (deltax>10) in SV_NewChaseDir()
297 else if (deltax<-10) in SV_NewChaseDir()
321 if ( ((rand()&3) & 1) || abs(deltay)>abs(deltax)) in SV_NewChaseDir()
/external/quake/quake/src/WinQuake/
Dsv_move.cpp286 float deltax,deltay; in SV_NewChaseDir() local
293 deltax = enemy->u.v.origin[0] - actor->u.v.origin[0]; in SV_NewChaseDir()
295 if (deltax>10) in SV_NewChaseDir()
297 else if (deltax<-10) in SV_NewChaseDir()
321 if ( ((rand()&3) & 1) || abs((int) deltay)>abs((int) deltax)) in SV_NewChaseDir()
/external/qemu/distrib/sdl-1.2.12/src/video/x11/
DSDL_x11events.c330 int deltax, deltay; in X11_WarpedMotion() local
335 deltax = xevent->xmotion.x - mouse_last.x; in X11_WarpedMotion()
338 printf("Warped mouse motion: %d,%d\n", deltax, deltay); in X11_WarpedMotion()
342 posted = SDL_PrivateMouseMotion(0, 1, deltax, deltay); in X11_WarpedMotion()
350 deltax = xevent->xmotion.x - mouse_last.x; in X11_WarpedMotion()
353 printf("Extra mouse motion: %d,%d\n", deltax, deltay); in X11_WarpedMotion()
357 posted += SDL_PrivateMouseMotion(0, 1, deltax, deltay); in X11_WarpedMotion()
/external/webkit/WebKit/mac/Misc/
DWebNSViewExtras.m96 … float deltax = ABS([nextEvent locationInWindow].x - [mouseDownEvent locationInWindow].x);
100 if (deltax >= xHysteresis) {