Searched refs:deltax (Results 1 – 6 of 6) sorted by relevance
/external/libvpx/vp8/common/ |
D | textblit.c | 64 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/ |
D | SDL_amigaevents.c | 56 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/ |
D | sv_move.c | 286 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/ |
D | sv_move.cpp | 286 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/ |
D | SDL_x11events.c | 330 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/ |
D | WebNSViewExtras.m | 96 … float deltax = ABS([nextEvent locationInWindow].x - [mouseDownEvent locationInWindow].x); 100 if (deltax >= xHysteresis) {
|