Searched defs:xmax (Results 1 - 10 of 10) sorted by relevance

/openjdk7/hotspot/test/compiler/6855215/
H A DTest6855215.java41 void calcMapping(double xmin, double xmax, double ymin, double ymax) { argument
42 m = (ymax - ymin) / (log10(xmax) - log10(xmin));
43 b = (log10(xmin) * ymax - log10(xmax) * ymin);
/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DOrder1.java38 private double xmax; field in class:Order1
51 this.xmax = x1;
54 this.xmax = x0;
83 return xmax;
231 if (xmax <= c1.xmin) {
232 return (xmin == c1.xmax) ? 0 : -1;
234 if (xmin >= c1.xmax) {
H A DOrder2.java41 private double xmax; field in class:Order2
181 xmax = Math.max(Math.max(x0, x1), cx0);
215 return xmax;
H A DOrder3.java44 private double xmax; field in class:Order3
247 xmax = Math.max(Math.max(x0, x1), Math.max(cx0, cx1));
284 return xmax;
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DDrawPolygons.c37 jint xmin, ymin, xmax, ymax; local
39 xmin = xmax = transX + *xPointsPtr++;
46 if (xmax < x) xmax = x;
49 if (++xmax < xmin) xmax--;
53 if (bounds->x2 > xmax) bounds->x2 = xmax;
H A DGraphicsPrimitiveMgr.c147 jint xmin, ymin, xmax, ymax; local
149 xmin = xmax = transX + (jint)(*coords++ + 0.5);
156 if (xmax < x) xmax = x;
159 if (++xmax < xmin) xmax--;
163 if (bounds->x2 > xmax) bounds->x2 = xmax;
/openjdk7/jdk/test/sun/java2d/pipe/
H A DRegionOps.java257 int xmin, int xmax,
264 for (int x = xmin; x < xmax; x++) {
255 testTranslate(RectListImpl a, int dx, int dy, boolean isNonDestructive, int xmin, int xmax, int ymin, int ymax) argument
/openjdk7/jdk/src/share/demo/applets/MoleculeViewer/
H A DXYZApp.java90 float xmin, xmax, ymin, ymax, zmin, zmax; field in class:XYZChemModel
285 this.xmax = _xmax;
356 float xw = m.xmax - m.xmin;
452 md.mat.translate(-(md.xmin + md.xmax) / 2,
/openjdk7/jdk/src/share/demo/applets/WireFrame/
H A DThreeD.java71 float xmin, xmax, ymin, ymax, zmin, zmax; field in class:Model3D
365 this.xmax = _xmax;
424 float xw = m.xmax - m.xmin;
511 md.mat.translate(-(md.xmin + md.xmax) / 2,
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DGeneralRenderer.java423 static int outcode(int x, int y, int xmin, int ymin, int xmax, int ymax) { argument
434 } else if (x > xmax) {

Completed in 374 milliseconds