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

1 2 3 4

  /bionic/libm/upstream-freebsd/lib/msun/src/
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...]
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 +
  /external/libgdx/gdx/src/com/badlogic/gdx/math/
Bresenham2.java 69 int dx1 = 0, dy1 = 0, dx2 = 0, dy2 = 0; local
72 dx2 = -1;
75 dx2 = 1;
88 dx2 = 0;
101 startX += dx2;
  /external/pdfium/third_party/agg23/
agg_math_stroke.h 49 FX_FLOAT dx2, FX_FLOAT dy2,
55 FX_FLOAT a2 = FXSYS_atan2(dy2, dx2);
86 out_vertices.add(coord_type(x + dx2, y + dy2));
94 FX_FLOAT dx2, FX_FLOAT dy2,
106 v1.x + dx2, v1.y - dy2,
107 v2.x + dx2, v2.y - dy2,
128 out_vertices.add(coord_type(v1.x + dx2, v1.y - dy2));
132 v1.x, v1.y, dx1, -dy1, dx2, -dy2,
138 out_vertices.add(coord_type(v1.x + dx2 - FXSYS_Mul(dy2, miter_limit),
139 v1.y - dy2 - FXSYS_Mul(dx2, miter_limit)))
    [all...]
  /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
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;
  /external/opencv3/samples/cpp/
squares.cpp 41 double dx2 = pt2.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 27 double dx2 = pt2.x - pt0.x; local
29 return (dx1*dx2 + dy1*dy2)/sqrt((dx1*dx1 + dy1*dy1)*(dx2*dx2 + dy2*dy2) + 1e-10);
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfTiledInputFile.h 322 // The two readTiles(dx1, dx2, dy1, dy2, ...) functions allow
337 void readTiles (int dx1, int dx2, int dy1, int dy2,
340 void readTiles (int dx1, int dx2, int dy1, int dy2,
ImfTiledOutputFile.h 325 // The two writeTiles(dx1, dx2, dy1, dy2, ...) functions allow
328 // dx1, dx2 and dy1, dy2, specify inclusive ranges of tile
329 // coordinates. It is valid for dx1 < dx2 or dy1 < dy2; the
383 void writeTiles (int dx1, int dx2, int dy1, int dy2,
386 void writeTiles (int dx1, int dx2, int dy1, int dy2,
  /external/fonttools/Lib/fontTools/misc/
transform.py 192 xx2, xy2, yx2, yy2, dx2, dy2 = self.__affine
198 xx2*dx1 + yx2*dy1 + dx2,
215 xx2, xy2, yx2, yy2, dx2, dy2 = other
221 xx2*dx1 + yx2*dy1 + dx2,
293 xx2, xy2, yx2, yy2, dx2, dy2 = other
295 (xx2, xy2, yx2, yy2, dx2, dy2)
  /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 68 struct brw_reg dx2; member in struct:brw_sf_compile
  /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 273 /*package*/ static void native_rQuadTo(long nPath, float dx1, float dy1, float dx2, float dy2) {
279 pathDelegate.rQuadTo(dx1, dy1, dx2, dy2);
722 * @param dx2 The amount to add to the x-coordinate of the last point on
727 public void rQuadTo(float dx1, float dy1, float dx2, float dy2) {
733 dx2 += mLastX;
735 mPath.quadTo(dx1, dy1, mLastX = dx2, mLastY = dy2);
763 public void rCubicTo(float dx1, float dy1, float dx2, float dy2,
770 dx2 += mLastX;
774 mPath.curveTo(dx1, dy1, dx2, dy2, mLastX = dx3, mLastY = dy3);
  /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/pdfium/xfa/src/fxbarcode/common/
BC_CommonPerspectiveTransform.cpp 104 FX_FLOAT dx2 = x3 - x2; local
107 FX_FLOAT denominator = dx1 * dy2 - dx2 * dy1;
108 FX_FLOAT a13 = (dx3 * dy2 - dx2 * dy3) / denominator;
  /external/skia/platform_tools/android/apps/canvasproof/src/main/java/org/skia/canvasproof/
CanvasProofActivity.java 192 float dx2 = dx * dx; local
194 if (dx2 + dy2 > 22500.0) {
195 if (dy2 < 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
  /external/mesa3d/src/gallium/state_trackers/vega/
matrix.h 306 VGfloat dx2, VGfloat dy2,
309 VGfloat ax = dx0 - dx1 + dx2 - dx3;
316 dx2 - dx1, dy2 - dy1, 0,
320 VGfloat ax1 = dx1 - dx2;
321 VGfloat ax2 = dx3 - dx2;
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,
  /external/opencv3/modules/imgproc/src/
linefit.cpp 51 double dx2, dy2, dxy; local
87 dx2 = x2 - x * x;
91 t = (float) atan2( 2 * dxy, dx2 - dy2 ) / 2;
105 float dx2, dy2, dz2, dxy, dxz, dyz; local
167 dx2 = x2 - x0 * x0;
178 det[4] = dx2 + dz2;
182 det[8] = dy2 + dx2;
  /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);

Completed in 1174 milliseconds

1 2 3 4