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

1 2 3

  /bionic/libm/upstream-freebsd/lib/msun/src/
e_coshl.c 89 double dx2; local
110 dx2 = x2;
111 RETURNI((((((((((((C26*dx2 + C24)*dx2 + C22)*dx2 +
e_sinhl.c 88 double dx2,s; local
113 dx2 = x2;
114 RETURNI(((((((((((S25*dx2 + S23)*dx2 +
s_tanhl.c 116 double dx2; local
144 dx2 = x2;
146 RETURNI(((((((((((((((T33*dx2 + T31)*dx2 + T29)*dx2 + T27)*dx2 +
152 long double q = ((((((((((((((T33*dx2 + T31)*dx2 + T29)*dx2 + T27)*dx2
    [all...]
  /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/apache-commons-math/src/main/java/org/apache/commons/math/stat/clustering/
KMeansPlusPlusClusterer.java 171 final double[] dx2 = new double[pointSet.size()]; local
181 dx2[i] = sum;
187 for (int i = 0 ; i < dx2.length; i++) {
188 if (dx2[i] >= r) {
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_sf.h 69 struct brw_reg dx2; member in struct:brw_sf_compile
  /external/mesa3d/src/mesa/swrast/
s_aatriangle.c 198 const GLfloat dx2 = v0[0] - v2[0]; local
232 cross = (dx2 * (sy - v2[1]) - dy2 * (sx - v2[0]));
234 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_neon.h 62 SkFractionalInt dx2 = dx+dx; local
63 SkFractionalInt dx4 = dx2+dx2;
  /external/skqp/src/opts/
SkBitmapProcState_matrix_neon.h 62 SkFractionalInt dx2 = dx+dx; local
63 SkFractionalInt dx4 = dx2+dx2;
  /external/tensorflow/tensorflow/core/kernels/
crop_and_resize_op_gpu.cu.cc 301 float dx1, dx2; local
304 dx2 = image_grad_x * (x * width_ratio);
307 dx2 = image_grad_x * 0.5 * (image_width - 1);
313 CudaAtomicAdd(grads_boxes_ptr + b * 4 + 3, 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/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
Rotation.java 359 double dx2 = v2x - u2.getX(); local
363 dz1 * dx2 - dx1 * dz2,
364 dx1 * dy2 - dy1 * dx2);
395 dz2 * dx3 - dx2 * dz3,
396 dx2 * dy3 - dy2 * dx3);
    [all...]
  /external/freetype/src/smooth/
ftgrays.c 1098 TPos dx1, dy1, dx2, dy2; local
    [all...]
  /frameworks/native/services/inputflinger/
InputReader.cpp 5991 float dx2 = delta2.dx * mPointerXZoomScale; local
    [all...]
  /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 

Completed in 993 milliseconds

1 2 3