Searched defs:xe (Results 1 - 2 of 2) sorted by relevance
/openjdk7/jdk/src/share/classes/java/awt/geom/ |
H A D | CubicCurve2D.java | 1205 double xe = getRootUpperBound(eqn); 1206 double x0 = -xe; 1214 res[2] = refineRootWithHint(eqn, intervals[1], xe, res[2]); 1219 // fx0 = solveEqn(eqn, 3, x0); fxe = solveEqn(eqn, 3, xe) 1239 res[0] = bisectRootWithHint(eqn, x1, xe, res[2]); 1245 res[0] = bisectRootWithHint(eqn, x0, xe, res[1]); 1306 private static double bisectRootWithHint(double[] eqn, double x0, double xe, double hint) { argument 1308 double delta2 = Math.min(abs(hint - xe) / 64, 0.0625); 1318 xe = xe2; 1333 return bisectRoot(eqn, x0, xe); 1336 bisectRoot(double[] eqn, double x0, double xe) argument [all...] |
/openjdk7/jdk/src/share/native/sun/java2d/loops/ |
H A D | ProcessPath.c | 573 jint xe = (jint)(coords[4]*MDP_MULT); local 609 jint dx = xe - x0; 648 /* Bounding x2 by xe */ 649 if (((xe-x2)^dx) < 0) { 650 x2 = xe; 662 /* We are performing one step less than necessary and use actual (xe,ye) 667 hnd->pProcessFixedLine(hnd, x2, y2, xe, ye, pixelInfo, checkBounds, 1001 jint xe = (jint)(coords[6]*MDP_MULT); local 1054 jint dx = xe - x0; 1110 * (xe,y [all...] |
Completed in 36 milliseconds