HomeSort by relevance Sort by last modified time
    Searched refs:dx2 (Results 26 - 50 of 65) sorted by null

12 3

  /external/opencv/cv/src/
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...]
  /external/opencv/cvaux/src/
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
cvepilines.cpp     [all...]
  /external/chromium_org/third_party/skia/src/opts/
SkBitmapProcState_matrix_repeat_neon.h 100 SkFixed dx2 = dx+dx; local
101 SkFixed dx4 = dx2+dx2;
SkBitmapProcState_opts_SSE2.cpp 508 SkFixed dx2 = dx + dx; local
512 __m128i wide_d2 = _mm_set_epi32(dx2, dy2, dx2, dy2);
544 fx += dx2;
SkBitmapProcState_matrix_clamp_neon.h 103 SkFixed dx2 = dx+dx; local
104 SkFixed dx4 = dx2+dx2;
  /external/skia/src/opts/
SkBitmapProcState_matrix_repeat_neon.h 100 SkFixed dx2 = dx+dx; local
101 SkFixed dx4 = dx2+dx2;
SkBitmapProcState_opts_SSE2.cpp 508 SkFixed dx2 = dx + dx; local
512 __m128i wide_d2 = _mm_set_epi32(dx2, dy2, dx2, dy2);
544 fx += dx2;
SkBitmapProcState_matrix_clamp_neon.h 103 SkFixed dx2 = dx+dx; local
104 SkFixed dx4 = dx2+dx2;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageUtilsTest.java 254 int dx2 = dx1 + bounds.width; local
259 dx2 *= scale;
267 g.drawImage(image, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, null);
  /external/chromium_org/third_party/skia/include/core/
SkPath.h 402 @param dx2 The amount to add to the x-coordinate of the last point on
407 void rQuadTo(SkScalar dx1, SkScalar dy1, SkScalar dx2, SkScalar dy2);
414 void rConicTo(SkScalar dx1, SkScalar dy1, SkScalar dx2, SkScalar dy2,
451 @param dx2 The amount to add to the x-coordinate of the last point on
    [all...]
  /external/skia/include/core/
SkPath.h 402 @param dx2 The amount to add to the x-coordinate of the last point on
407 void rQuadTo(SkScalar dx1, SkScalar dy1, SkScalar dx2, SkScalar dy2);
414 void rConicTo(SkScalar dx1, SkScalar dy1, SkScalar dx2, SkScalar dy2,
451 @param dx2 The amount to add to the x-coordinate of the last point on
    [all...]
  /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/freetype/src/smooth/
ftgrays.c 1067 TPos dx1, dy1, dx2, dy2; local
    [all...]
  /external/chromium_org/third_party/freetype/src/smooth/
ftgrays.c 1024 TPos dx1, dy1, dx2, dy2; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_sf_emit.c 251 c->dx2 = brw_vec1_grf(1, 4);
462 brw_MAC(p, c->tmp, c->a1_sub_a0, negate(c->dx2));
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_sf_emit.c 251 c->dx2 = brw_vec1_grf(1, 4);
462 brw_MAC(p, c->tmp, c->a1_sub_a0, negate(c->dx2));
  /prebuilts/devtools/tools/lib/
jfreechart-swt-1.0.9.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9-swt.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart-swt/1.0.9/
jfreechart-swt-1.0.9.jar 
  /external/chromium_org/third_party/skia/src/core/
SkPath.cpp 806 void SkPath::rConicTo(SkScalar dx1, SkScalar dy1, SkScalar dx2, SkScalar dy2,
811 this->conicTo(pt.fX + dx1, pt.fY + dy1, pt.fX + dx2, pt.fY + dy2, w);
    [all...]

Completed in 2348 milliseconds

12 3