Searched defs:dx1 (Results 1 - 25 of 30) sorted by relevance

12

/external/eigen/blas/f2c/
H A Ddrotmg.c16 dx1, doublereal *dy1, doublereal *dparam)
117 dp1 = *dd1 * *dx1;
119 dq1 = dp1 * *dx1;
124 dh21 = -(*dy1) / *dx1;
138 *dx1 *= du;
150 dh22 = *dx1 / *dy1;
155 *dx1 = *dy1 * du;
168 *dx1 = zero;
212 *dx1 /= gam;
229 *dx1 *
15 drotmg_(doublereal *dd1, doublereal *dd2, doublereal * dx1, doublereal *dy1, doublereal *dparam) argument
[all...]
/external/pdfium/core/fxge/
H A Dcfx_pathdata.cpp52 float dx1 = hw * diff.y / ll; local
54 rect->UpdateRect(CFX_PointF(mx - dx1, my + dy1));
55 rect->UpdateRect(CFX_PointF(mx + dx1, my - dy1));
/external/pdfium/third_party/agg23/
H A Dagg_math_stroke.h48 float dx1, float dy1,
54 float a1 = atan2(dy1, dx1);
62 out_vertices.add(coord_type(x + dx1, y + dy1));
95 float dx1, float dy1,
106 if(calc_intersection(v0.x + dx1, v0.y - dy1,
107 v1.x + dx1, v1.y - dy1,
118 float x2 = v1.x + dx1;
120 if ((((x2 - v0.x) * dy1) - ((v0.y - y2) * dx1) < 0) !=
121 (((x2 - v2.x) * dy1) - ((v2.y - y2) * dx1) < 0)) {
122 out_vertices.add(coord_type(v1.x + dx1, v
46 stroke_calc_arc(VertexConsumer& out_vertices, float x, float y, float dx1, float dy1, float dx2, float dy2, float width, float approximation_scale) argument
[all...]
/external/mesa3d/src/mesa/swrast/
H A Ds_aatriangle.c196 const GLfloat dx1 = v2[0] - v1[0]; local
203 assert(dx0 * dy1 - dx1 * dy0 >= 0.0); /* area >= 0.0 */
222 cross = (dx1 * (sy - v1[1]) - dy1 * (sx - v1[0]));
224 cross = dx1 + dy1;
/external/opencv/cvaux/src/
H A Dcvface.cpp187 long dx1 = LeftEyeRect.x + LeftEyeRect.width/2 - MouthRect.x; local
193 (double)(dx1*dx1)/((double)MouthRect.width*MouthRect.width) +
/external/skia/src/gpu/vk/
H A DGrVkCopyManager.cpp201 float dx1 = 2.f * (dstPoint.fX + w) / dw - 1.f; local
226 float uniData[] = { dx1 - dx0, dy1 - dy0, dx0, dy0, // posXform
/external/opencv/cv/src/
H A Dcvapprox.cpp209 int dx1, dy1, dx2, dy2; local
217 dx1 = array[i1].pt.x - pt0.x;
222 if( (dx1 | dy1) == 0 || (dx2 | dy2) == 0 )
225 temp_num = dx1 * dx2 + dy1 * dy2;
228 sqrt( ((double)dx1 * dx1 + (double)dy1 * dy1) *
H A Dcvgeometry.cpp114 icvIntersectLines( double x1, double dx1, double y1, double dy1, argument
117 double d = dx1 * dy2 - dx2 * dy1;
122 *t2 = ((x2 - x1) * dy1 - (y2 - y1) * dx1) / d;
295 double dx, dy, dx1, dy1, dx2, dy2, dist_num, dist_denom = 1; local
309 dx1 = pt.x - v0.x; dy1 = pt.y - v0.y;
312 if( dx1*dx + dy1*dy <= 0 )
313 dist_num = dx1*dx1 + dy1*dy1;
318 dist_num = (dy1*dx - dx1*dy);
336 dist_num = dy1*dx - dx1*d
[all...]
H A Dcvshapedescr.cpp142 double dx1 = pt1.y - pt0.y; local
149 if( icvIntersectLines( x1, dx1, y1, dy1, x2, dx2, y2, dy2, &t ) >= 0 )
H A Dcvsurf.cpp86 int dx1 = src[k][0]*newSize/oldSize; local
90 dst[k].p0 = dy1*widthStep + dx1;
91 dst[k].p1 = dy2*widthStep + dx1;
94 dst[k].w = src[k][4]/((float)(dx2-dx1)*(dy2-dy1));
H A Dcvfundam.cpp407 double dx1 = ptr[j].x - ptr[i].x; local
413 if( fabs(dx2*dy1 - dy2*dx1) < FLT_EPSILON*(fabs(dx1) + fabs(dy1) + fabs(dx2) + fabs(dy2)))
/external/skqp/src/gpu/vk/
H A DGrVkCopyManager.cpp198 float dx1 = 2.f * (dstPoint.fX + w) / dw - 1.f; local
223 float uniData[] = { dx1 - dx0, dy1 - dy0, dx0, dy0, // posXform
/external/tensorflow/tensorflow/core/kernels/
H A Dcrop_and_resize_op_gpu.cu.cc301 float dx1, dx2; local
303 dx1 = image_grad_x * (image_width - 1 - x * width_ratio);
306 dx1 = image_grad_x * 0.5 * (image_width - 1);
311 CudaAtomicAdd(grads_boxes_ptr + b * 4 + 1, dx1);
/external/pdfium/third_party/lcms/src/
H A Dcmsintrp.c344 dx0, dx1, local
368 dx1 = LERP(fx, d01, d11);
370 dxy = LERP(fy, dx0, dx1);
397 dx0, dx1, local
426 dx1 = LERP(rx, d01, d11);
428 dxy = LERP(ry, dx0, dx1);
/external/proguard/src/proguard/gui/splash/
H A DOverrideGraphics2D.java294 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) argument
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) argument
301 return graphics.drawImage(img, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, observer);
/external/swiftshader/src/Renderer/
H A DRenderer.cpp1817 float dx1 = lineWidth * 0.5f * P1.w / W; local
1832 P[4].x += -dx1;
1838 P[6].x += +dx1;
/external/freetype/src/smooth/
H A Dftgrays.c1098 TPos dx1, dy1, dx2, dy2; local
1147 dx1 = arc[1].x - arc[0].x;
1149 s = FT_ABS( SUB_LONG( MUL_LONG( dy, dx1 ), MUL_LONG( dx, dy1 ) ) );
1165 if ( dx1 * ( dx1 - dx ) + dy1 * ( dy1 - dy ) > 0 ||
/external/skia/src/core/
H A DSkPath.cpp843 void SkPath::rConicTo(SkScalar dx1, SkScalar dy1, SkScalar dx2, SkScalar dy2, argument
848 this->conicTo(pt.fX + dx1, pt.fY + dy1, pt.fX + dx2, pt.fY + dy2, w);
/external/skia/src/gpu/gl/
H A DGrGLGpu.cpp4045 GrGLfloat dx1 = 2.f * (dstPoint.fX + w) / dw - 1.f; local
4069 GL_CALL(Uniform4f(fCopyPrograms[progIdx].fPosXformUniform, dx1 - dx0, dy1 - dy0, dx0, dy0));
/external/skqp/src/core/
H A DSkPath.cpp834 void SkPath::rConicTo(SkScalar dx1, SkScalar dy1, SkScalar dx2, SkScalar dy2, argument
839 this->conicTo(pt.fX + dx1, pt.fY + dy1, pt.fX + dx2, pt.fY + dy2, w);
/external/skqp/src/gpu/gl/
H A DGrGLGpu.cpp4066 GrGLfloat dx1 = 2.f * (dstPoint.fX + w) / dw - 1.f; local
4090 GL_CALL(Uniform4f(fCopyPrograms[progIdx].fPosXformUniform, dx1 - dx0, dy1 - dy0, dx0, dy0));
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/oned/ ...
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
/external/conscrypt/benchmark-android/
H A Dvogar.jarMETA-INF/ META-INF/MANIFEST.MF vogar/ vogar/TestProperties.class TestProperties.java package vogar ...

Completed in 3062 milliseconds

12