/external/opencv/cv/src/ |
cvlinefit.cpp | 49 double dx2, dy2, dxy; local 87 dx2 = x2 - x * x; 91 t = (float) atan2( 2 * dxy, dx2 - dy2 ) / 2; 108 float dx2, dy2, dz2, dxy, dxz, dyz; local 170 dx2 = x2 - x0 * x0; 181 det[4] = dx2 + dz2; 185 det[8] = dy2 + dx2;
|
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;
|
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) ));
|
cvcorner.cpp | 669 double dx2 = dx * dx; local 673 dstdata[j] = (float)(factor*(dx2*d2ydata[j] + dy2*d2xdata[j] - 2*dx*dy*dxydata[j]));
|
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...] |
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));
|
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/chromium_org/content/renderer/pepper/ |
pepper_graphics_2d_host_unittest.cc | 129 int dx2; member in struct:content::__anon8216 177 EXPECT_EQ(delta, gfx::Point(tests[i].dx2, tests[i].dy2));
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_sf.h | 68 struct brw_reg dx2; member in struct:brw_sf_compile
|
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
s_aatriangle.c | 213 const GLfloat dx2 = v0[0] - v2[0]; local 247 cross = (dx2 * (sy - v2[1]) - dy2 * (sx - v2[0])); 249 cross = dx2 + dy2;
|
/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/mesa3d/src/mesa/drivers/dri/i965/ |
brw_sf.h | 68 struct brw_reg dx2; member in struct:brw_sf_compile
|
/external/mesa3d/src/mesa/swrast/ |
s_aatriangle.c | 213 const GLfloat dx2 = v0[0] - v2[0]; local 247 cross = (dx2 * (sy - v2[1]) - dy2 * (sx - v2[0])); 249 cross = dx2 + dy2;
|
/external/opencv/cvaux/src/ |
cvface.cpp | 188 long dx2 = RightEyeRect.x + RightEyeRect.width/2 - MouthRect.x - MouthRect.width; local 194 (double)(dx2*dx2)/((double)MouthRect.width*MouthRect.width);
|
/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.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
SwtUtils.java | 276 int dx2 = dx1 + bounds.width; local 281 dx2 *= 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 | 254 int dx2 = dx1 + bounds.width; local 259 dx2 *= scale; 267 g.drawImage(image, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, null);
|
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
FastMath.java | 692 float dx1, dx2, dy1, dy2; local 695 dx2 = p2.x - p0.x; 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/chromium_org/cc/animation/ |
transform_operations_unittest.cc | 255 SkMScalar dx2 = 10; local 265 operations_to.AppendTranslate(dx2, dy2, dz2); 275 translate_to.Translate3d(dx2, dy2, dz2); 343 SkMScalar dx2 = 10; local 352 operations_to.AppendTranslate(dx2, dy2, dz2); 360 to.Translate3d(dx2, dy2, dz2); [all...] |
/external/chromium_org/third_party/freetype/src/smooth/ |
ftgrays.c | 1067 TPos dx1, dy1, dx2, dy2; local [all...] |
/external/freetype/src/smooth/ |
ftgrays.c | 1067 TPos dx1, dy1, dx2, dy2; local [all...] |