/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) ));
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_sf.h | 70 struct brw_reg dy2; member in struct:brw_sf_compile
|
/external/chromium_org/third_party/skia/src/pathops/ |
SkPathOpsLine.h | 37 static bool NearRay(double dx1, double dy1, double dx2, double dy2);
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_sf.h | 70 struct brw_reg dy2; member in struct:brw_sf_compile
|
/external/skia/src/pathops/ |
SkPathOpsLine.h | 37 static bool NearRay(double dx1, double dy1, double dx2, double dy2);
|
/external/chromium_org/third_party/mesa/src/include/VG/ |
vgu.h | 113 VGfloat dx2, VGfloat dy2, 119 VGfloat dx2, VGfloat dy2,
|
/external/mesa3d/include/VG/ |
vgu.h | 113 VGfloat dx2, VGfloat dy2, 119 VGfloat dx2, VGfloat dy2,
|
/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); 653 * @param dy2 The amount to add to the y-coordinate of the last point on 656 private void rQuadTo(float dx1, float dy1, float dx2, float dy2) { 663 dy2 += mLastY; 664 mPath.quadTo(dx1, dy1, mLastX = dx2, mLastY = dy2); 689 private void rCubicTo(float dx1, float dy1, float dx2, float dy2, 697 dy2 += mLastY; 700 mPath.curveTo(dx1, dy1, dx2, dy2, mLastX = dx3, mLastY = dy3);
|
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
s_aatriangle.c | 214 const GLfloat dy2 = v0[1] - v2[1]; local 247 cross = (dx2 * (sy - v2[1]) - dy2 * (sx - v2[0])); 249 cross = dx2 + dy2;
|
/external/mesa3d/src/mesa/swrast/ |
s_aatriangle.c | 214 const GLfloat dy2 = v0[1] - v2[1]; local 247 cross = (dx2 * (sy - v2[1]) - dy2 * (sx - v2[0])); 249 cross = dx2 + dy2;
|
/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/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
matrix.h | 306 VGfloat dx2, VGfloat dy2, 310 VGfloat ay = dy0 - dy1 + dy2 - dy3; 316 dx2 - dx1, dy2 - dy1, 0, 322 VGfloat ay1 = dy1 - dy2; 323 VGfloat ay2 = dy3 - dy2; 369 VGfloat dx2, VGfloat dy2, 380 dx2, dy2, dx3, dy3,
|
vgu.c | 388 VGfloat dx2, VGfloat dy2, 399 dx2, dy2, 414 VGfloat dx2, VGfloat dy2, 429 dx2, dy2,
|
renderer.h | 155 int dx2, int dy2,
|
/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...] |
/external/mesa3d/src/gallium/state_trackers/vega/ |
matrix.h | 306 VGfloat dx2, VGfloat dy2, 310 VGfloat ay = dy0 - dy1 + dy2 - dy3; 316 dx2 - dx1, dy2 - dy1, 0, 322 VGfloat ay1 = dy1 - dy2; 323 VGfloat ay2 = dy3 - dy2; 369 VGfloat dx2, VGfloat dy2, 380 dx2, dy2, dx3, dy3,
|
vgu.c | 388 VGfloat dx2, VGfloat dy2, 399 dx2, dy2, 414 VGfloat dx2, VGfloat dy2, 429 dx2, dy2,
|
renderer.h | 155 int dx2, int dy2,
|
/frameworks/base/graphics/java/android/graphics/ |
Path.java | 380 * @param dy2 The amount to add to the y-coordinate of the last point on 383 public void rQuadTo(float dx1, float dy1, float dx2, float dy2) { 385 native_rQuadTo(mNativePath, dx1, dy1, dx2, dy2); 724 float dx2, float dy2);
|
/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/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
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
ImageUtilsTest.java | 255 int dy2 = dy1 + bounds.height; local 260 dy2 *= scale; 267 g.drawImage(image, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, null);
|