HomeSort by relevance Sort by last modified time
    Searched refs:vx (Results 26 - 50 of 174) sorted by null

12 3 4 5 6 7

  /external/chromium_org/ui/events/
events_stub.cc 112 float* vx,
event_utils.h 126 float* vx,
  /external/pixman/pixman/
pixman-sse2.c     [all...]
pixman-fast-path.c 1375 pixman_fixed_t vx,
1383 tmp1 = *(src + pixman_fixed_to_int (vx));
1384 vx += unit_x;
1385 tmp2 = *(src + pixman_fixed_to_int (vx));
1386 vx += unit_x;
1387 tmp3 = *(src + pixman_fixed_to_int (vx));
1388 vx += unit_x;
1389 tmp4 = *(src + pixman_fixed_to_int (vx));
1390 vx += unit_x;
1398 tmp1 = *(src + pixman_fixed_to_int (vx));
1501 pixman_fixed_t vx = v.vector[0]; local
    [all...]
  /external/chromium_org/content/renderer/input/
input_handler_proxy.cc 382 const float vx = gesture_event.data.flingStart.velocityX; local
384 current_fling_velocity_ = gfx::Vector2dF(vx, vy);
387 WebFloatPoint(vx, vy),
389 disallow_horizontal_fling_scroll_ = !vx;
394 "vx",
395 vx,
402 fling_parameters_.delta = WebFloatPoint(vx, vy);
547 "vx",
  /external/chromium_org/third_party/skia/src/gpu/
GrBitmapTextContext.cpp 427 SkFixed vx, SkFixed vy,
442 vx += SkIntToFixed(glyph->fBounds.fLeft);
451 int x = vx >> 16;
498 translate.setTranslate(SkFixedToScalar(vx - SkIntToFixed(glyph->fBounds.fLeft)),
572 r.fLeft = SkFixedToFloat(vx);
574 r.fRight = SkFixedToFloat(vx + width);
  /external/skia/src/gpu/
GrBitmapTextContext.cpp 427 SkFixed vx, SkFixed vy,
442 vx += SkIntToFixed(glyph->fBounds.fLeft);
451 int x = vx >> 16;
498 translate.setTranslate(SkFixedToScalar(vx - SkIntToFixed(glyph->fBounds.fLeft)),
572 r.fLeft = SkFixedToFloat(vx);
574 r.fRight = SkFixedToFloat(vx + width);
  /external/chromium_org/third_party/skia/src/utils/
SkNinePatch.cpp 78 SkScalar vx = bounds.fLeft; local
79 verts->set(vx, vy); verts++;
86 vx += computeVertexDelta(x & 1, tx, prev, stretchX);
89 verts->set(vx, vy); verts++;
  /external/opencv/cv/src/
cvoptflowbm.cpp 340 int vx = cvRound( velxf[j] ), vy = cvRound( velyf[j] ); local
341 velx[j] = vx; vely[j] = vy;
537 float vx = (float)velx[j]*back, vy = (float)vely[j]*back;
538 velxf[j] = vx; velyf[j] = vy;
cvhough.cpp 909 float vx, vy; local
913 vx = dx_row[x];
916 if( !edges_row[x] || (vx == 0 && vy == 0) )
919 if( fabs(vx) < fabs(vy) )
921 sx = cvRound(vx*ONE/fabs(vy));
926 assert( vx != 0 );
927 sy = cvRound(vy*ONE/fabs(vx));
928 sx = vx < 0 ? -ONE : ONE;
    [all...]
cvsurf.cpp 372 float vx, vy, w; local
378 vx = icvCalcHaarPattern( ptr, dx_t, NX )*w;
380 X[nangle] = vx; Y[nangle] = vy;
477 float vx = (PATCH[i][j+1] - PATCH[i][j] + PATCH[i+1][j+1] - PATCH[i+1][j])*dw; local
479 DX[i][j] = vx;
cvlinefit.cpp 246 float vx = _line[0], vy = _line[1], vz = _line[2];
259 p2 = vz * x - vx * z;
260 p3 = vx * y - vy * x;
cvoptflowhs.cpp 323 float *vx = velocityX; local
328 memset( vx, 0, imageWidth * sizeof( float ));
331 vx += velStep;
  /external/skia/src/utils/
SkNinePatch.cpp 78 SkScalar vx = bounds.fLeft; local
79 verts->set(vx, vy); verts++;
86 vx += computeVertexDelta(x & 1, tx, prev, stretchX);
89 verts->set(vx, vy); verts++;
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page.cpp 133 short vx, vy; local
134 ((CPDF_CIDFont*)pFont)->GetVertOrigin(CID, vx, vy);
136 pInfo->m_OriginX -= fontsize * vx / 1000;
385 short vx, vy; local
386 pCIDFont->GetVertOrigin(CID, vx, vy);
387 char_rect.left -= vx;
388 char_rect.right -= vx;
452 short vx, vy; local
453 pCIDFont->GetVertOrigin(CID, vx, vy);
454 char_rect.left -= vx;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/Xext/Xv/
Xv.c 427 int vx, int vy,
446 req->vid_x = vx;
467 int vx, int vy,
485 req->vid_x = vx;
506 int vx, int vy,
524 req->vid_x = vx;
545 int vx, int vy,
563 req->vid_x = vx;
  /packages/experimental/DreamTheater/src/com/android/dreamtheater/
BouncyDroid.java 374 float x, float y, float vx, float vy,
376 final float mag = (float) Math.hypot(vx, vy);
380 mx.setSinCos(-vx/mag, vy/mag);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
TouchPaint.java 534 double vx = Math.cos(direction) * dispersion; local
544 temp = vx;
545 vx = temp * Math.cos(orientation) - vy * Math.sin(orientation);
553 float px = (float) (vx * pd);
  /external/chromium_org/ui/events/gesture_detection/
gesture_detector.h 164 bool HandleSwipeIfNeeded(const MotionEvent& up, float vx, float vy);
  /external/chromium_org/ui/events/ozone/
events_ozone.cc 130 float* vx,
  /external/chromium_org/ui/events/x/
device_data_manager.h 172 float* vx,
events_x.cc 691 float* vx,
702 if (!vx)
703 vx = &vx_;
714 native_event, vx, vy, vx_ordinal, vy_ordinal, is_cancel);
device_data_manager.cc 476 float* vx, float* vy,
479 *vx = 0;
489 *vx = data[DT_CMT_FLING_X];
  /frameworks/base/core/java/android/webkit/
WebViewProvider.java 233 public void flingScroll(int vx, int vy);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
FrameWork.py 912 vx, vy = self.getscrollbarvalues()
913 if vx is None: self.barx_enabled, vx = 0, 0
917 self.barx = NewControl(self.wid, rect, "", 1, vx, 0, 32767, 16, 0)
    [all...]

Completed in 625 milliseconds

12 3 4 5 6 7