/external/opencv/cv/src/ |
D | cvconvhull.cpp | 658 double dx0, dy0; in cvConvexityDefects() local 670 dx0 = (double)hull_next->x - (double)hull_cur->x; in cvConvexityDefects() 672 assert( dx0 != 0 || dy0 != 0 ); in cvConvexityDefects() 673 scale = 1./sqrt(dx0*dx0 + dy0*dy0); in cvConvexityDefects() 694 double dist = fabs(-dy0*dx + dx0*dy) * scale; in cvConvexityDefects() 769 int dx0 = cur_pt->x - prev_pt->x; in cvCheckContourConvexity() local 785 dydx0 = dy * dx0; in cvCheckContourConvexity() 799 dx0 = dx; in cvCheckContourConvexity() 810 float dx0 = cur_pt->x - prev_pt->x; in cvCheckContourConvexity() local 826 dydx0 = dy * dx0; in cvCheckContourConvexity() [all …]
|
D | cvhough.cpp | 564 int i, j, k, x0, y0, dx0, dy0, xflag; in icvHoughLinesProbabalistic() local 604 dx0 = a > 0 ? 1 : -1; in icvHoughLinesProbabalistic() 612 dx0 = cvRound( a*(1 << shift)/fabs(b) ); in icvHoughLinesProbabalistic() 618 int gap = 0, x = x0, y = y0, dx = dx0, dy = dy0; in icvHoughLinesProbabalistic() 666 int x = x0, y = y0, dx = dx0, dy = dy0; in icvHoughLinesProbabalistic()
|
D | cvcalibinit.cpp | 508 float prevt = 0, dx0 = b.x - a.x, dy0 = b.y - a.y; in icvCheckBoardMonotony() local 509 if( fabs(dx0) + fabs(dy0) < FLT_EPSILON ) in icvCheckBoardMonotony() 515 float t = ((c.x - a.x)*dx0 + (c.y - a.y)*dy0)/(dx0*dx0 + dy0*dy0); in icvCheckBoardMonotony()
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
D | matrix.h | 303 static INLINE VGboolean matrix_square_to_quad(VGfloat dx0, VGfloat dy0, 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() 317 dx0, dy0, 1); in matrix_square_to_quad() 336 a = dx1 - dx0 + g * dx1; in matrix_square_to_quad() 337 b = dx3 - dx0 + h * dx3; in matrix_square_to_quad() 338 c = dx0; in matrix_square_to_quad() 367 static INLINE VGboolean matrix_quad_to_quad(VGfloat dx0, VGfloat dy0, in matrix_quad_to_quad() argument 379 if (!matrix_square_to_quad(dx0, dy0, dx1, dy1, in matrix_quad_to_quad()
|
D | vgu.c | 386 VGUErrorCode vguComputeWarpSquareToQuad(VGfloat dx0, VGfloat dy0, in vguComputeWarpSquareToQuad() argument 397 if (!matrix_square_to_quad(dx0, dy0, in vguComputeWarpSquareToQuad() 412 VGUErrorCode vguComputeWarpQuadToQuad(VGfloat dx0, VGfloat dy0, in vguComputeWarpQuadToQuad() argument 427 if (!matrix_quad_to_quad(dx0, dy0, in vguComputeWarpQuadToQuad()
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
D | matrix.h | 303 static INLINE VGboolean matrix_square_to_quad(VGfloat dx0, VGfloat dy0, 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() 317 dx0, dy0, 1); in matrix_square_to_quad() 336 a = dx1 - dx0 + g * dx1; in matrix_square_to_quad() 337 b = dx3 - dx0 + h * dx3; in matrix_square_to_quad() 338 c = dx0; in matrix_square_to_quad() 367 static INLINE VGboolean matrix_quad_to_quad(VGfloat dx0, VGfloat dy0, in matrix_quad_to_quad() argument 379 if (!matrix_square_to_quad(dx0, dy0, dx1, dy1, in matrix_quad_to_quad()
|
D | vgu.c | 386 VGUErrorCode vguComputeWarpSquareToQuad(VGfloat dx0, VGfloat dy0, in vguComputeWarpSquareToQuad() argument 397 if (!matrix_square_to_quad(dx0, dy0, in vguComputeWarpSquareToQuad() 412 VGUErrorCode vguComputeWarpQuadToQuad(VGfloat dx0, VGfloat dy0, in vguComputeWarpQuadToQuad() argument 427 if (!matrix_quad_to_quad(dx0, dy0, in vguComputeWarpQuadToQuad()
|
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
D | s_aatriangle.c | 209 const GLfloat dx0 = v1[0] - v0[0]; in compute_coveragef() local 218 ASSERT(dx0 * dy1 - dx1 * dy0 >= 0.0); /* area >= 0.0 */ in compute_coveragef() 224 GLfloat cross = (dx0 * (sy - v0[1]) - dy0 * (sx - v0[0])); in compute_coveragef() 229 cross = dx0 + dy0; in compute_coveragef()
|
D | s_aaline.c | 281 const GLfloat area = dx0 * dy1 - dx1 * dy0; in compute_coveragef()
|
/external/mesa3d/src/mesa/swrast/ |
D | s_aatriangle.c | 209 const GLfloat dx0 = v1[0] - v0[0]; in compute_coveragef() local 218 ASSERT(dx0 * dy1 - dx1 * dy0 >= 0.0); /* area >= 0.0 */ in compute_coveragef() 224 GLfloat cross = (dx0 * (sy - v0[1]) - dy0 * (sx - v0[0])); in compute_coveragef() 229 cross = dx0 + dy0; in compute_coveragef()
|
D | s_aaline.c | 281 const GLfloat area = dx0 * dy1 - dx1 * dy0; in compute_coveragef()
|
/external/chromium_org/third_party/skia/src/effects/gradients/ |
D | SkClampRange.cpp | 48 void SkClampRange::init(SkFixed fx0, SkFixed dx0, int count, int v0, int v1) { in init() argument 62 int64_t dx = dx0; in init()
|
/external/mesa3d/include/VG/ |
D | vgu.h | 111 VGU_API_CALL VGUErrorCode VGU_API_ENTRY vguComputeWarpSquareToQuad(VGfloat dx0, VGfloat dy0, 117 VGU_API_CALL VGUErrorCode VGU_API_ENTRY vguComputeWarpQuadToQuad(VGfloat dx0, VGfloat dy0,
|
/external/chromium_org/third_party/mesa/src/include/VG/ |
D | vgu.h | 111 VGU_API_CALL VGUErrorCode VGU_API_ENTRY vguComputeWarpSquareToQuad(VGfloat dx0, VGfloat dy0, 117 VGU_API_CALL VGUErrorCode VGU_API_ENTRY vguComputeWarpQuadToQuad(VGfloat dx0, VGfloat dy0,
|
/external/skia/src/effects/gradients/ |
D | SkClampRange.cpp | 48 void SkClampRange::init(SkFixed fx0, SkFixed dx0, int count, int v0, int v1) { in init() argument 62 int64_t dx = dx0; in init()
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
D | brw_sf.h | 67 struct brw_reg dx0; member
|
D | brw_sf_emit.c | 250 c->dx0 = brw_vec1_grf(1, 3); in alloc_regs() 461 brw_MUL(p, brw_null_reg(), c->a2_sub_a0, c->dx0); in brw_emit_tri_setup() 533 brw_MUL(p, c->tmp, c->a1_sub_a0, c->dx0); in brw_emit_line_setup() 602 c->dx0, in brw_emit_point_sprite_setup()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_sf.h | 67 struct brw_reg dx0; member
|
D | brw_sf_emit.c | 250 c->dx0 = brw_vec1_grf(1, 3); in alloc_regs() 461 brw_MUL(p, brw_null_reg(), c->a2_sub_a0, c->dx0); in brw_emit_tri_setup() 533 brw_MUL(p, c->tmp, c->a1_sub_a0, c->dx0); in brw_emit_line_setup() 602 c->dx0, in brw_emit_point_sprite_setup()
|
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/ |
D | cmsintrp.c | 344 dx0, dx1, in BilinearInterpFloat() local 367 dx0 = LERP(fx, d00, d10); in BilinearInterpFloat() 370 dxy = LERP(fy, dx0, dx1); in BilinearInterpFloat() 397 dx0, dx1, in BilinearInterp16() local 425 dx0 = LERP(rx, d00, d10); in BilinearInterp16() 428 dxy = LERP(ry, dx0, dx1); in BilinearInterp16()
|