Home
last modified time | relevance | path

Searched refs:deltax (Results 1 – 7 of 7) 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/jmonkeyengine/engine/src/core/com/jme3/input/event/
DTouchEvent.java111 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/
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.15/src/video/x11/
DSDL_x11events.c336 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/
Ddraggable_button.mm87 float deltax = [nextEvent locationInWindow].x -
92 if ([self deltaIndicatesConclusionReachedWithXDelta:deltax
96 dragIt = [self deltaIndicatesDragStartWithXDelta:deltax
/external/webkit/Source/WebKit/mac/Misc/
DWebNSViewExtras.m96 … float deltax = ABS([nextEvent locationInWindow].x - [mouseDownEvent locationInWindow].x);
100 if (deltax >= xHysteresis) {