Searched refs:deltax (Results 1 – 7 of 7) 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/jmonkeyengine/engine/src/core/com/jme3/input/event/ |
D | TouchEvent.java | 111 public TouchEvent(Type type, float x, float y, float deltax, float deltay) { in TouchEvent() argument 112 set(type, x, y, deltax, deltay); in TouchEvent() 119 public void set(Type type, float x, float y, float deltax, float deltay) { in set() argument 123 this.deltaX = deltax; in set()
|
/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.15/src/video/x11/ |
D | SDL_x11events.c | 336 int deltax, deltay; in X11_WarpedMotion() local 341 deltax = xevent->xmotion.x - mouse_last.x; in X11_WarpedMotion() 344 printf("Warped mouse motion: %d,%d\n", deltax, deltay); in X11_WarpedMotion() 348 posted = SDL_PrivateMouseMotion(0, 1, deltax, deltay); in X11_WarpedMotion() 356 deltax = xevent->xmotion.x - mouse_last.x; in X11_WarpedMotion() 359 printf("Extra mouse motion: %d,%d\n", deltax, deltay); in X11_WarpedMotion() 363 posted += SDL_PrivateMouseMotion(0, 1, deltax, deltay); in X11_WarpedMotion()
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | draggable_button.mm | 87 float deltax = [nextEvent locationInWindow].x - 92 if ([self deltaIndicatesConclusionReachedWithXDelta:deltax 96 dragIt = [self deltaIndicatesDragStartWithXDelta:deltax
|
/external/webkit/Source/WebKit/mac/Misc/ |
D | WebNSViewExtras.m | 96 … float deltax = ABS([nextEvent locationInWindow].x - [mouseDownEvent locationInWindow].x); 100 if (deltax >= xHysteresis) {
|