Home
last modified time | relevance | path

Searched refs:dy2 (Results 1 – 20 of 20) sorted by relevance

/external/opencv/cv/src/
Dcvgeometry.cpp115 double x2, double dx2, double y2, double dy2, double *t2 ) in icvIntersectLines() argument
117 double d = dx1 * dy2 - dx2 * dy1; in icvIntersectLines()
295 double dx, dy, dx1, dy1, dx2, dy2, dist_num, dist_denom = 1; in cvPointPolygonTest() local
310 dx2 = pt.x - v.x; dy2 = pt.y - v.y; in cvPointPolygonTest()
314 else if( dx2*dx + dy2*dy >= 0 ) in cvPointPolygonTest()
315 dist_num = dx2*dx2 + dy2*dy2; in cvPointPolygonTest()
Dcvlinefit.cpp49 double dx2, dy2, dxy; in icvFitLine2D_wods() local
88 dy2 = y2 - y * y; in icvFitLine2D_wods()
91 t = (float) atan2( 2 * dxy, dx2 - dy2 ) / 2; in icvFitLine2D_wods()
108 float dx2, dy2, dz2, dxy, dxz, dyz; in icvFitLine3D_wods() local
173 dy2 = y2 - y0 * y0; in icvFitLine3D_wods()
177 det[0] = dz2 + dy2; in icvFitLine3D_wods()
185 det[8] = dy2 + dx2; in icvFitLine3D_wods()
D_cvgeom.h56 double x2, double dx2, double y2, double dy2,
Dcvapprox.cpp209 int dx1, dy1, dx2, dy2; in icvApproximateChainTC89() local
220 dy2 = array[i2].pt.y - pt0.y; in icvApproximateChainTC89()
222 if( (dx1 | dy1) == 0 || (dx2 | dy2) == 0 ) in icvApproximateChainTC89()
225 temp_num = dx1 * dx2 + dy1 * dy2; in icvApproximateChainTC89()
229 ((double)dx2 * dx2 + (double)dy2 * dy2) )); in icvApproximateChainTC89()
Dcvsurf.cpp89 int dy2 = src[k][3]*newSize/oldSize; in icvResizeHaarPattern() local
91 dst[k].p1 = dy2*widthStep + dx1; in icvResizeHaarPattern()
93 dst[k].p3 = dy2*widthStep + dx2; in icvResizeHaarPattern()
94 dst[k].w = src[k][4]/((float)(dx2-dx1)*(dy2-dy1)); in icvResizeHaarPattern()
Dcvshapedescr.cpp140 double dy2 = pt1.x - pt2.x; in icvFindCircle() local
149 if( icvIntersectLines( x1, dx1, y1, dy1, x2, dx2, y2, dy2, &t ) >= 0 ) in icvFindCircle()
152 center->y = (float) (y2 + dy2 * t); in icvFindCircle()
Dcvcorner.cpp671 double dy2 = dy * dy; in cvPreCornerDetect() local
673 … dstdata[j] = (float)(factor*(dx2*d2ydata[j] + dy2*d2xdata[j] - 2*dx*dy*dxydata[j])); in cvPreCornerDetect()
Dcvfundam.cpp412 double dy2 = ptr[k].y - ptr[i].y; in checkSubset() local
413 … if( fabs(dx2*dy1 - dy2*dx1) < FLT_EPSILON*(fabs(dx1) + fabs(dy1) + fabs(dx2) + fabs(dy2))) in checkSubset()
/external/jmonkeyengine/engine/src/core/com/jme3/math/
DFastMath.java692 float dx1, dx2, dy1, dy2; in counterClockwise() local
696 dy2 = p2.y - p0.y; in counterClockwise()
697 if (dx1 * dy2 > dy1 * dx2) { in counterClockwise()
700 if (dx1 * dy2 < dy1 * dx2) { in counterClockwise()
703 if ((dx1 * dx2 < 0) || (dy1 * dy2 < 0)) { in counterClockwise()
706 if ((dx1 * dx1 + dy1 * dy1) < (dx2 * dx2 + dy2 * dy2)) { in counterClockwise()
/external/proguard/src/proguard/gui/splash/
DOverrideGraphics2D.java294 …public boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2,… in drawImage() argument
296 return graphics.drawImage(img, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, bgcolor, observer); in drawImage()
299 …public boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2,… in drawImage() argument
301 return graphics.drawImage(img, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, observer); in drawImage()
/external/skia/src/opts/
DSkBitmapProcState_opts_SSE2.cpp508 SkFixed dy2 = dy + dy; in ClampX_ClampY_filter_affine_SSE2() local
511 __m128i wide_d2 = _mm_set_epi32(dx2, dy2, dx2, dy2); in ClampX_ClampY_filter_affine_SSE2()
544 fy += dy2; in ClampX_ClampY_filter_affine_SSE2()
/external/opencv/cvaux/src/
Ddecomppoly.cpp153 int dx1, dy1, dx2, dy2;
197 dy2 = y3 - y2;
198 if( dx1 * dy2 - dx2 * dy1 < 0 ) // convex condition
Dcvepilines.cpp2949 double dx2,dy2; in icvSelectBestRt() local
2951 dy2 = imagePoints2[begPoint+currPoint].y - projImagePoints2[currPoint].y; in icvSelectBestRt()
2952 len2 = sqrt(dx2*dx2 + dy2*dy2); in icvSelectBestRt()
/external/webkit/Source/WebCore/platform/graphics/qt/
DFontQt.cpp131 qreal dx1 = 0, dx2 = 0, dy1 = 0, dy2 = 0; in drawTextCommon() local
137 dy2 = ctxShadow->offset().y(); in drawTextCommon()
141 clip.adjust(dx1, dx2, dy1, dy2); in drawTextCommon()
/external/freetype/src/smooth/
Dftgrays.c1034 TPos dx1, dy1, dx2, dy2; in gray_render_cubic() local
1088 dy2 = arc[2].y - arc[0].y; in gray_render_cubic()
1089 s = FT_ABS( dy * dx2 - dx * dy2 ); in gray_render_cubic()
1096 dy * dy2 + dx * dx2 < 0 || in gray_render_cubic()
/external/skia/include/core/
DSkPath.h368 void rQuadTo(SkScalar dx1, SkScalar dy1, SkScalar dx2, SkScalar dy2);
/external/quake/quake/src/QW/scitech/include/
Dmgraph.h1564 m_int MGL_backfacing(fix32_t dx1,fix32_t dy1,fix32_t dx2,fix32_t dy2);
1597 m_int ASMAPI MGL_backfacing(fix32_t dx1,fix32_t dy1,fix32_t dx2,fix32_t dy2);
/external/quake/quake/src/WinQuake/scitech/INCLUDE/
DMGRAPH.H1564 m_int MGL_backfacing(fix32_t dx1,fix32_t dy1,fix32_t dx2,fix32_t dy2);
1597 m_int ASMAPI MGL_backfacing(fix32_t dx1,fix32_t dy1,fix32_t dx2,fix32_t dy2);
/external/icu4c/test/intltest/
Dcalregts.cpp2269 int32_t dy2 = cal2->fieldDifference(date2, Calendar::YEAR, ec2); in TestJ438() local
2276 (dy2 != dy)){ in TestJ438()
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/en-GB/
Den-GB_kdt_g2p.pkb482 dy2�