HomeSort by relevance Sort by last modified time
    Searched refs:dx2 (Results 1 - 25 of 40) sorted by null

1 2

  /external/opencv/cv/src/
_cvgeom.h 56 double x2, double dx2, double y2, double dy2,
cvgeometry.cpp 115 double x2, double dx2, double y2, double dy2, double *t2 )
117 double d = dx1 * dy2 - dx2 * dy1;
295 double dx, dy, dx1, dy1, dx2, dy2, dist_num, dist_denom = 1; local
310 dx2 = pt.x - v.x; dy2 = pt.y - v.y;
314 else if( dx2*dx + dy2*dy >= 0 )
315 dist_num = dx2*dx2 + dy2*dy2;
cvlinefit.cpp 49 double dx2, dy2, dxy; local
87 dx2 = x2 - x * x;
91 t = (float) atan2( 2 * dxy, dx2 - dy2 ) / 2;
108 float dx2, dy2, dz2, dxy, dxz, dyz; local
170 dx2 = x2 - x0 * x0;
181 det[4] = dx2 + dz2;
185 det[8] = dy2 + dx2;
cvapprox.cpp 209 int dx1, dy1, dx2, dy2; local
219 dx2 = array[i2].pt.x - pt0.x;
222 if( (dx1 | dy1) == 0 || (dx2 | dy2) == 0 )
225 temp_num = dx1 * dx2 + dy1 * dy2;
229 ((double)dx2 * dx2 + (double)dy2 * dy2) ));
cvsurf.cpp 88 int dx2 = src[k][2]*newSize/oldSize; local
92 dst[k].p2 = dy1*widthStep + dx2;
93 dst[k].p3 = dy2*widthStep + dx2;
94 dst[k].w = src[k][4]/((float)(dx2-dx1)*(dy2-dy1));
cvshapedescr.cpp 144 double dx2 = pt2.y - pt1.y; local
149 if( icvIntersectLines( x1, dx1, y1, dy1, x2, dx2, y2, dy2, &t ) >= 0 )
151 center->x = (float) (x2 + dx2 * t);
    [all...]
cvcorner.cpp 669 double dx2 = dx * dx; local
673 dstdata[j] = (float)(factor*(dx2*d2ydata[j] + dy2*d2xdata[j] - 2*dx*dy*dxydata[j]));
cvfundam.cpp 411 double dx2 = ptr[k].x - ptr[i].x; local
413 if( fabs(dx2*dy1 - dy2*dx1) < FLT_EPSILON*(fabs(dx1) + fabs(dy1) + fabs(dx2) + fabs(dy2)))
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 261 /*package*/ static void native_rQuadTo(int nPath, float dx1, float dy1, float dx2, float dy2) {
267 pathDelegate.rQuadTo(dx1, dy1, dx2, dy2);
645 * @param dx2 The amount to add to the x-coordinate of the last point on
650 private void rQuadTo(float dx1, float dy1, float dx2, float dy2) {
656 dx2 += mLastX;
658 mPath.quadTo(dx1, dy1, mLastX = dx2, mLastY = dy2);
683 private void rCubicTo(float dx1, float dy1, float dx2, float dy2,
690 dx2 += mLastX;
694 mPath.curveTo(dx1, dy1, dx2, dy2, mLastX = dx3, mLastY = dy3);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SwtUtils.java 276 int dx2 = dx1 + bounds.width; local
281 dx2 *= scale;
291 for (int dx = dx1, sx = sx1; dx < dx2; dx++, sx++) {
299 int dxDelta = dx2 - dx1;
304 for (int dx = dx1, sx = sx1; dx < dx2; dx++, sx = (dx - dx1) * sxDelta
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
FastMath.java 692 float dx1, dx2, dy1, dy2; local
695 dx2 = p2.x - p0.x;
697 if (dx1 * dy2 > dy1 * dx2) {
700 if (dx1 * dy2 < dy1 * dx2) {
703 if ((dx1 * dx2 < 0) || (dy1 * dy2 < 0)) {
706 if ((dx1 * dx1 + dy1 * dy1) < (dx2 * dx2 + dy2 * dy2)) {
    [all...]
  /external/opencv/cvaux/src/
cvface.cpp 188 long dx2 = RightEyeRect.x + RightEyeRect.width/2 - MouthRect.x - MouthRect.width; local
194 (double)(dx2*dx2)/((double)MouthRect.width*MouthRect.width);
decomppoly.cpp 153 int dx1, dy1, dx2, dy2;
196 dx2 = x3 - x2;
198 if( dx1 * dy2 - dx2 * dy1 < 0 ) // convex condition
288 } // if( dx1 * dy2 - dx2 * dy1 < 0 )
315 } // if( dx1 * dy2 - dx2 * dy1 < 0 ) else
  /frameworks/base/graphics/java/android/graphics/
Path.java 285 * @param dx2 The amount to add to the x-coordinate of the last point on
290 public void rQuadTo(float dx1, float dy1, float dx2, float dy2) {
292 native_rQuadTo(mNativePath, dx1, dy1, dx2, dy2);
627 float dx2, float dy2);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageUtilsTest.java 253 int dx2 = dx1 + bounds.width; local
258 dx2 *= scale;
266 g.drawImage(image, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, null);
  /external/proguard/src/proguard/gui/splash/
OverrideGraphics2D.java 294 public boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, Color bgcolor, ImageObserver observer)
296 return graphics.drawImage(img, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, bgcolor, observer);
299 public boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, ImageObserver observer)
301 return graphics.drawImage(img, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, observer);
  /external/skia/src/opts/
SkBitmapProcState_opts_SSE2.cpp 507 SkFixed dx2 = dx + dx; local
511 __m128i wide_d2 = _mm_set_epi32(dx2, dy2, dx2, dy2);
543 fx += dx2;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageCrop.java 108 float dx2 = 0; local
136 dx2 = mCurrentX - newCrop.right;
138 dx2 = mCurrentX - newCrop.left;
145 if (Math.sqrt(dx1*dx1 + dy1*dy1) > Math.sqrt(dx2*dx2 + dy2*dy2)){
  /external/skia/src/core/
SkBitmapProcState_matrixProcs.cpp 167 SkFixed dx2 = dx+dx; local
168 SkFixed dx4 = dx2+dx2;
SkBitmapProcState_matrix_repeat.h 105 SkFixed dx2 = dx+dx; local
106 SkFixed dx4 = dx2+dx2;
SkBitmapProcState_matrix_clamp.h 107 SkFixed dx2 = dx+dx; local
108 SkFixed dx4 = dx2+dx2;
  /external/webkit/Source/WebCore/platform/graphics/qt/
FontQt.cpp 131 qreal dx1 = 0, dx2 = 0, dy1 = 0, dy2 = 0; local
133 dx2 = ctxShadow->offset().x();
141 clip.adjust(dx1, dx2, dy1, dy2);
  /frameworks/base/core/jni/android/graphics/
Path.cpp 127 static void rQuadTo(JNIEnv* env, jobject clazz, SkPath* obj, jfloat dx1, jfloat dy1, jfloat dx2, jfloat dy2) {
130 SkScalar dx2_ = SkFloatToScalar(dx2);
  /external/skia/include/core/
SkPath.h 363 @param dx2 The amount to add to the x-coordinate of the last point on
368 void rQuadTo(SkScalar dx1, SkScalar dy1, SkScalar dx2, SkScalar dy2);
404 @param dx2 The amount to add to the x-coordinate of the last point on
  /external/freetype/src/smooth/
ftgrays.c 1034 TPos dx1, dy1, dx2, dy2; local
    [all...]

Completed in 828 milliseconds

1 2