/external/qemu/hw/ |
D | ps2.c | 285 int dx1, dy1, dz1; in ps2_mouse_send_packet() local 287 dx1 = s->mouse_dx; in ps2_mouse_send_packet() 291 if (dx1 > 127) in ps2_mouse_send_packet() 292 dx1 = 127; in ps2_mouse_send_packet() 293 else if (dx1 < -127) in ps2_mouse_send_packet() 294 dx1 = -127; in ps2_mouse_send_packet() 299 b = 0x08 | ((dx1 < 0) << 4) | ((dy1 < 0) << 5) | (s->mouse_buttons & 0x07); in ps2_mouse_send_packet() 301 ps2_queue(&s->common, dx1 & 0xff); in ps2_mouse_send_packet() 325 s->mouse_dx -= dx1; in ps2_mouse_send_packet()
|
/external/opencv/cv/src/ |
D | cvgeometry.cpp | 114 icvIntersectLines( double x1, double dx1, double y1, double dy1, in icvIntersectLines() argument 117 double d = dx1 * dy2 - dx2 * dy1; in icvIntersectLines() 122 *t2 = ((x2 - x1) * dy1 - (y2 - y1) * dx1) / d; in icvIntersectLines() 295 double dx, dy, dx1, dy1, dx2, dy2, dist_num, dist_denom = 1; in cvPointPolygonTest() local 309 dx1 = pt.x - v0.x; dy1 = pt.y - v0.y; in cvPointPolygonTest() 312 if( dx1*dx + dy1*dy <= 0 ) in cvPointPolygonTest() 313 dist_num = dx1*dx1 + dy1*dy1; in cvPointPolygonTest() 318 dist_num = (dy1*dx - dx1*dy); in cvPointPolygonTest() 336 dist_num = dy1*dx - dx1*dy; in cvPointPolygonTest()
|
D | _cvgeom.h | 55 int icvIntersectLines( double x1, double dx1, double y1, double dy1,
|
D | cvapprox.cpp | 209 int dx1, dy1, dx2, dy2; in icvApproximateChainTC89() local 217 dx1 = array[i1].pt.x - pt0.x; in icvApproximateChainTC89() 222 if( (dx1 | dy1) == 0 || (dx2 | dy2) == 0 ) in icvApproximateChainTC89() 225 temp_num = dx1 * dx2 + dy1 * dy2; in icvApproximateChainTC89() 228 sqrt( ((double)dx1 * dx1 + (double)dy1 * dy1) * in icvApproximateChainTC89()
|
D | cvsurf.cpp | 86 int dx1 = src[k][0]*newSize/oldSize; in icvResizeHaarPattern() local 90 dst[k].p0 = dy1*widthStep + dx1; in icvResizeHaarPattern() 91 dst[k].p1 = dy2*widthStep + dx1; in icvResizeHaarPattern() 94 dst[k].w = src[k][4]/((float)(dx2-dx1)*(dy2-dy1)); in icvResizeHaarPattern()
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
D | matrix.h | 304 VGfloat dx1, VGfloat dy1, in matrix_square_to_quad() argument 309 VGfloat ax = dx0 - dx1 + dx2 - dx3; in matrix_square_to_quad() 315 dx1 - dx0, dy1 - dy0, 0, in matrix_square_to_quad() 316 dx2 - dx1, dy2 - dy1, 0, in matrix_square_to_quad() 320 VGfloat ax1 = dx1 - dx2; in matrix_square_to_quad() 336 a = dx1 - dx0 + g * dx1; in matrix_square_to_quad() 368 VGfloat dx1, VGfloat dy1, in matrix_quad_to_quad() argument 379 if (!matrix_square_to_quad(dx0, dy0, dx1, dy1, in matrix_quad_to_quad()
|
D | vgu.c | 387 VGfloat dx1, VGfloat dy1, in vguComputeWarpSquareToQuad() argument 398 dx1, dy1, in vguComputeWarpSquareToQuad() 413 VGfloat dx1, VGfloat dy1, in vguComputeWarpQuadToQuad() argument 428 dx1, dy1, in vguComputeWarpQuadToQuad()
|
D | renderer.h | 154 int dx1, int dy1,
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
D | matrix.h | 304 VGfloat dx1, VGfloat dy1, in matrix_square_to_quad() argument 309 VGfloat ax = dx0 - dx1 + dx2 - dx3; in matrix_square_to_quad() 315 dx1 - dx0, dy1 - dy0, 0, in matrix_square_to_quad() 316 dx2 - dx1, dy2 - dy1, 0, in matrix_square_to_quad() 320 VGfloat ax1 = dx1 - dx2; in matrix_square_to_quad() 336 a = dx1 - dx0 + g * dx1; in matrix_square_to_quad() 368 VGfloat dx1, VGfloat dy1, in matrix_quad_to_quad() argument 379 if (!matrix_square_to_quad(dx0, dy0, dx1, dy1, in matrix_quad_to_quad()
|
D | vgu.c | 387 VGfloat dx1, VGfloat dy1, in vguComputeWarpSquareToQuad() argument 398 dx1, dy1, in vguComputeWarpSquareToQuad() 413 VGfloat dx1, VGfloat dy1, in vguComputeWarpQuadToQuad() argument 428 dx1, dy1, in vguComputeWarpQuadToQuad()
|
D | renderer.h | 154 int dx1, int dy1,
|
/external/mesa3d/src/mesa/swrast/ |
D | s_aatriangle.c | 211 const GLfloat dx1 = v2[0] - v1[0]; in compute_coveragef() local 218 ASSERT(dx0 * dy1 - dx1 * dy0 >= 0.0); /* area >= 0.0 */ in compute_coveragef() 237 cross = (dx1 * (sy - v1[1]) - dy1 * (sx - v1[0])); in compute_coveragef() 239 cross = dx1 + dy1; in compute_coveragef()
|
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
D | s_aatriangle.c | 211 const GLfloat dx1 = v2[0] - v1[0]; in compute_coveragef() local 218 ASSERT(dx0 * dy1 - dx1 * dy0 >= 0.0); /* area >= 0.0 */ in compute_coveragef() 237 cross = (dx1 * (sy - v1[1]) - dy1 * (sx - v1[0])); in compute_coveragef() 239 cross = dx1 + dy1; in compute_coveragef()
|
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
D | FastMath.java | 692 float dx1, dx2, dy1, dy2; in counterClockwise() local 693 dx1 = p1.x - p0.x; in counterClockwise() 697 if (dx1 * dy2 > dy1 * dx2) { in counterClockwise() 700 if (dx1 * dy2 < dy1 * dx2) { in counterClockwise() 703 if ((dx1 * dx2 < 0) || (dy1 * dy2 < 0)) { in counterClockwise() 706 if ((dx1 * dx1 + dy1 * dy1) < (dx2 * dx2 + dy2 * dy2)) { in counterClockwise()
|
/external/chromium_org/third_party/mesa/src/include/VG/ |
D | vgu.h | 112 VGfloat dx1, VGfloat dy1, 118 VGfloat dx1, VGfloat dy1,
|
/external/mesa3d/include/VG/ |
D | vgu.h | 112 VGfloat dx1, VGfloat dy1, 118 VGfloat dx1, VGfloat dy1,
|
/external/opencv/cvaux/src/ |
D | cvface.cpp | 187 long dx1 = LeftEyeRect.x + LeftEyeRect.width/2 - MouthRect.x; in CalculateError() local 193 (double)(dx1*dx1)/((double)MouthRect.width*MouthRect.width) + in CalculateError()
|
D | decomppoly.cpp | 153 int dx1, dy1, dx2, dy2; 194 dx1 = x2 - x1; 198 if( dx1 * dy2 - dx2 * dy1 < 0 ) // convex condition
|
/external/proguard/src/proguard/gui/splash/ |
D | OverrideGraphics2D.java | 294 …public boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2,… in drawImage() argument 296 return graphics.drawImage(img, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, bgcolor, observer); in drawImage() 299 …public boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2,… in drawImage() argument 301 return graphics.drawImage(img, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, observer); in drawImage()
|
/external/chromium_org/third_party/skia/src/pathops/ |
D | SkPathOpsLine.h | 37 static bool NearRay(double dx1, double dy1, double dx2, double dy2);
|
/external/skia/src/pathops/ |
D | SkPathOpsLine.h | 37 static bool NearRay(double dx1, double dy1, double dx2, double dy2);
|
/external/chromium_org/cc/animation/ |
D | transform_operations_unittest.cc | 247 SkMScalar dx1 = 1; in TEST() local 261 operations_from.AppendTranslate(dx1, dy1, dz1); in TEST() 270 translate_from.Translate3d(dx1, dy1, dz1); in TEST() 335 SkMScalar dx1 = 1; in TEST() local 349 operations_from.AppendTranslate(dx1, dy1, dz1); in TEST() 357 from.Translate3d(dx1, dy1, dz1); in TEST()
|
/external/chromium_org/content/renderer/pepper/ |
D | pepper_graphics_2d_host_unittest.cc | 127 int dx1; in TEST_F() member 172 gfx::Point delta(tests[i].dx1, tests[i].dy1); in TEST_F()
|
/external/chromium_org/third_party/skia/include/core/ |
D | SkPath.h | 396 void rQuadTo(SkScalar dx1, SkScalar dy1, SkScalar dx2, SkScalar dy2); 403 void rConicTo(SkScalar dx1, SkScalar dy1, SkScalar dx2, SkScalar dy2,
|
/external/skia/include/core/ |
D | SkPath.h | 396 void rQuadTo(SkScalar dx1, SkScalar dy1, SkScalar dx2, SkScalar dy2); 403 void rConicTo(SkScalar dx1, SkScalar dy1, SkScalar dx2, SkScalar dy2,
|