Searched refs:_y2 (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DDrawLine.c262 LineUtils_SetupBresenhamBig(jint _x1, jint _y1, jint _x2, jint _y2, argument
294 OverflowsBig(_x2) || OverflowsBig(_y2))
312 double Y2d = _y2;
331 Y2d = _y2 + (BIG_MIN - _x2) * DYd / DXd;
334 Y2d = _y2 - (_x2 - BIG_MAX) * DYd / DXd;
337 /* Use Y2d instead of _y2 for testing now as we may have modified it */
339 X2d = _x2 + (BIG_MIN - _y2) * DXd / DYd;
342 X2d = _x2 - (_y2 - BIG_MAX) * DXd / DYd;
348 _y2 = (int) Y2d;
351 SETUP_BRESENHAM(jlong, _x1, _y1, _x2, _y2, shorte
357 LineUtils_SetupBresenham(jint _x1, jint _y1, jint _x2, jint _y2, jint shorten, SurfaceDataBounds *pBounds, jint *pStartX, jint *pStartY, jint *pSteps, jint *pError, jint *pErrMajor, jint *pBumpMajorMask, jint *pErrMinor, jint *pBumpMinorMask) argument
[all...]

Completed in 29 milliseconds