HomeSort by relevance Sort by last modified time
    Searched refs:dy2 (Results 1 - 25 of 36) 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
88 dy2 = y2 - y * y;
91 t = (float) atan2( 2 * dxy, dx2 - dy2 ) / 2;
108 float dx2, dy2, dz2, dxy, dxz, dyz; local
173 dy2 = y2 - y0 * y0;
177 det[0] = dz2 + dy2;
185 det[8] = dy2 + dx2;
cvapprox.cpp 209 int dx1, dy1, dx2, dy2; local
220 dy2 = array[i2].pt.y - pt0.y;
222 if( (dx1 | dy1) == 0 || (dx2 | dy2) == 0 )
225 temp_num = dx1 * dx2 + dy1 * dy2;
229 ((double)dx2 * dx2 + (double)dy2 * dy2) ));
cvsurf.cpp 89 int dy2 = src[k][3]*newSize/oldSize; local
91 dst[k].p1 = dy2*widthStep + dx1;
93 dst[k].p3 = dy2*widthStep + dx2;
94 dst[k].w = src[k][4]/((float)(dx2-dx1)*(dy2-dy1));
cvshapedescr.cpp 140 double dy2 = pt1.x - pt2.x; local
149 if( icvIntersectLines( x1, dx1, y1, dy1, x2, dx2, y2, dy2, &t ) >= 0 )
152 center->y = (float) (y2 + dy2 * t);
    [all...]
cvcorner.cpp 671 double dy2 = dy * dy; local
673 dstdata[j] = (float)(factor*(dx2*d2ydata[j] + dy2*d2xdata[j] - 2*dx*dy*dxydata[j]));
cvfundam.cpp 412 double dy2 = ptr[k].y - ptr[i].y; 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);
647 * @param dy2 The amount to add to the y-coordinate of the last point on
650 private void rQuadTo(float dx1, float dy1, float dx2, float dy2) {
657 dy2 += mLastY;
658 mPath.quadTo(dx1, dy1, mLastX = dx2, mLastY = dy2);
683 private void rCubicTo(float dx1, float dy1, float dx2, float dy2,
691 dy2 += mLastY;
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 277 int dy2 = dy1 + bounds.height; local
282 dy2 *= scale;
290 for (int dy = dy1, sy = sy1; dy < dy2; dy++, sy++) {
301 int dyDelta = dy2 - dy1;
302 for (int dy = dy1, sy = sy1; dy < dy2; dy++, sy = (dy - dy1) * syDelta / dyDelta
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
FastMath.java 692 float dx1, dx2, dy1, dy2; local
696 dy2 = p2.y - p0.y;
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...]
  /frameworks/base/graphics/java/android/graphics/
Path.java 287 * @param dy2 The amount to add to the y-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 254 int dy2 = dy1 + bounds.height; local
259 dy2 *= 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 508 SkFixed dy2 = dy + dy; local
511 __m128i wide_d2 = _mm_set_epi32(dx2, dy2, dx2, dy2);
544 fy += dy2;
  /external/opencv/cvaux/src/
decomppoly.cpp 153 int dx1, dy1, dx2, dy2;
197 dy2 = y3 - y2;
198 if( dx1 * dy2 - dx2 * dy1 < 0 ) // convex condition
288 } // if( dx1 * dy2 - dx2 * dy1 < 0 )
315 } // if( dx1 * dy2 - dx2 * dy1 < 0 ) else
cvepilines.cpp     [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageCrop.java 109 float dy2 = 0; local
141 dy2 = mCurrentY - newCrop.bottom;
143 dy2 = mCurrentY - newCrop.top;
145 if (Math.sqrt(dx1*dx1 + dy1*dy1) > Math.sqrt(dx2*dx2 + dy2*dy2)){
  /external/webkit/Source/WebCore/platform/graphics/qt/
FontQt.cpp 131 qreal dx1 = 0, dx2 = 0, dy1 = 0, dy2 = 0; local
137 dy2 = ctxShadow->offset().y();
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) {
131 SkScalar dy2_ = SkFloatToScalar(dy2);
  /external/skia/include/core/
SkPath.h 365 @param dy2 The amount to add to the y-coordinate of the last point on
368 void rQuadTo(SkScalar dx1, SkScalar dy1, SkScalar dx2, SkScalar dy2);
406 @param dy2 The amount to add to the y-coordinate of the last point on
  /external/freetype/src/smooth/
ftgrays.c 1034 TPos dx1, dy1, dx2, dy2; local
    [all...]
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9-swt.jar 
  /external/quake/quake/src/QW/scitech/include/
mgraph.h     [all...]
  /external/quake/quake/src/WinQuake/scitech/INCLUDE/
MGRAPH.H     [all...]

Completed in 1072 milliseconds

1 2