HomeSort by relevance Sort by last modified time
    Searched defs:dx1 (Results 1 - 25 of 60) sorted by null

1 2 3

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
insns16-d-unit.s 73 dx1: label
  /external/opencv3/modules/calib3d/src/
fundam.cpp 59 double dx1 = ptr[j].x - ptr[i].x; local
65 if( fabs(dx2*dy1 - dy2*dx1) <= FLT_EPSILON*(fabs(dx1) + fabs(dy1) + fabs(dx2) + fabs(dy2)))
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/math/
Bresenham2.java 69 int dx1 = 0, dy1 = 0, dx2 = 0, dy2 = 0; local
71 dx1 = -1;
74 dx1 = 1;
98 startX += dx1;
  /external/opencv3/samples/cpp/
squares.cpp 39 double dx1 = pt1.x - pt0.x; local
43 return (dx1*dx2 + dy1*dy2)/sqrt((dx1*dx1 + dy1*dy1)*(dx2*dx2 + dy2*dy2) + 1e-10);
  /external/opencv3/samples/tapi/
squares.cpp 25 double dx1 = pt1.x - pt0.x; local
29 return (dx1*dx2 + dy1*dy2)/sqrt((dx1*dx1 + dy1*dy1)*(dx2*dx2 + dy2*dy2) + 1e-10);
  /external/pdfium/xfa/src/fxbarcode/common/
BC_CommonPerspectiveTransform.cpp 103 FX_FLOAT dx1 = x1 - x2; local
107 FX_FLOAT denominator = dx1 * dy2 - dx2 * dy1;
109 FX_FLOAT a23 = (dx1 * dy3 - dx3 * dy1) / denominator;
  /external/mesa3d/src/mesa/swrast/
s_aatriangle.c 211 const GLfloat dx1 = v2[0] - v1[0]; local
218 ASSERT(dx0 * dy1 - dx1 * dy0 >= 0.0); /* area >= 0.0 */
237 cross = (dx1 * (sy - v1[1]) - dy1 * (sx - v1[0]));
239 cross = dx1 + dy1;
  /external/opencv/cv/src/
cvgeometry.cpp 114 icvIntersectLines( double x1, double dx1, double y1, double dy1,
117 double d = dx1 * dy2 - dx2 * dy1;
122 *t2 = ((x2 - x1) * dy1 - (y2 - y1) * dx1) / d;
295 double dx, dy, dx1, dy1, dx2, dy2, dist_num, dist_denom = 1; local
309 dx1 = pt.x - v0.x; dy1 = pt.y - v0.y;
312 if( dx1*dx + dy1*dy <= 0 )
313 dist_num = dx1*dx1 + dy1*dy1;
318 dist_num = (dy1*dx - dx1*dy);
336 dist_num = dy1*dx - dx1*dy
    [all...]
cvapprox.cpp 209 int dx1, dy1, dx2, dy2; local
217 dx1 = array[i1].pt.x - pt0.x;
222 if( (dx1 | dy1) == 0 || (dx2 | dy2) == 0 )
225 temp_num = dx1 * dx2 + dy1 * dy2;
228 sqrt( ((double)dx1 * dx1 + (double)dy1 * dy1) *
cvshapedescr.cpp 142 double dx1 = pt1.y - pt0.y; local
149 if( icvIntersectLines( x1, dx1, y1, dy1, x2, dx2, y2, dy2, &t ) >= 0 )
    [all...]
cvsurf.cpp 86 int dx1 = src[k][0]*newSize/oldSize; local
90 dst[k].p0 = dy1*widthStep + dx1;
91 dst[k].p1 = dy2*widthStep + dx1;
94 dst[k].w = src[k][4]/((float)(dx2-dx1)*(dy2-dy1));
  /external/opencv/cvaux/src/
cvface.cpp 187 long dx1 = LeftEyeRect.x + LeftEyeRect.width/2 - MouthRect.x; local
193 (double)(dx1*dx1)/((double)MouthRect.width*MouthRect.width) +
  /external/opencv3/modules/imgproc/src/
filterengine.hpp 258 int dx1; member in class:cv::FilterEngine
approx.cpp 184 int dx1, dy1, dx2, dy2; local
192 dx1 = array[i1].pt.x - pt0.x;
197 if( (dx1 | dy1) == 0 || (dx2 | dy2) == 0 )
200 temp_num = dx1 * dx2 + dy1 * dy2;
203 sqrt( ((double)dx1 * dx1 + (double)dy1 * dy1) *
geometry.cpp 193 double dx, dy, dx1, dy1, dx2, dy2, dist_num, dist_denom = 1; local
202 dx1 = pt.x - v0.x; dy1 = pt.y - v0.y;
205 if( dx1*dx + dy1*dy <= 0 )
206 dist_num = dx1*dx1 + dy1*dy1;
211 dist_num = (dy1*dx - dx1*dy);
229 dist_num = dy1*dx - dx1*dy;
shapedescr.cpp 46 static int intersectLines( double x1, double dx1, double y1, double dy1,
49 double d = dx1 * dy2 - dx2 * dy1;
54 *t2 = ((x2 - x1) * dy1 - (y2 - y1) * dx1) / d;
68 double dx1 = pt1.y - pt0.y; local
73 if( intersectLines( x1, dx1, y1, dy1, x2, dx2, y2, dy2, &t ) >= 0 )
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SwtUtils.java 274 int dx1 = bounds.x - boundingBox.x; local
276 int dx2 = dx1 + bounds.width;
279 dx1 *= 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
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageUtilsTest.java 252 int dx1 = bounds.x - boundingBox.x; local
254 int dx2 = dx1 + bounds.width;
257 dx1 *= scale;
267 g.drawImage(image, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, null);
  /external/pdfium/third_party/lcms2-2.6/src/
cmsintrp.c 344 dx0, dx1, local
368 dx1 = LERP(fx, d01, d11);
370 dxy = LERP(fy, dx0, dx1);
397 dx0, dx1, local
426 dx1 = LERP(rx, d01, d11);
428 dxy = LERP(ry, dx0, dx1);
    [all...]
  /frameworks/base/media/java/android/media/
ThumbnailUtils.java 434 int dx1 = Math.max(0, b1.getWidth() - targetWidth); local
439 dx1 / 2,
  /packages/apps/Gallery/src/com/android/camera/
Util.java 224 int dx1 = Math.max(0, b1.getWidth() - targetWidth); local
229 dx1 / 2,
  /external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
Rotation.java 356 double dx1 = v1x - u1.getX(); local
363 dz1 * dx2 - dx1 * dz2,
364 dx1 * dy2 - dy1 * dx2);
385 dz1 * dx3 - dx1 * dz3,
386 dx1 * dy3 - dy1 * dx3);
    [all...]
  /external/freetype/src/smooth/
ftgrays.c 1098 TPos dx1, dy1, dx2, dy2; local
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btConvexHullComputer.cpp 1097 int32_t dx1 = (w1->point.x - v1->point.x) * sign; local
1100 if ((dxn > 0) && (dy1 < 0) && ((dx1 == 0) || ((dx1 < 0) && (dy1 * dx < dy * dx1))))
1120 int32_t dx1 = (w1->point.x - v1->point.x) * sign; local
1122 if ((dy1 >= 0) && ((dx1 == 0) || ((dx1 < 0) && (dy1 * dx <= dy * dx1))))
1568 int64_t dx1 = d1.dot(perp); local
1571 if ((dxn > 0) && ((dx1 == 0) ? (dy1 < 0) : ((dx1 < 0) && (Rational64(dy1, dx1).compare(Rational64(dy, dx)) > 0)))
1600 int64_t dx1 = (f1->target->point - et1).dot(perp); local
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/smooth/
ftgrays.c 1237 TPos dx1, dy1, dx2, dy2; local
    [all...]

Completed in 900 milliseconds

1 2 3