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

/openjdk7/jdk/src/share/classes/java/awt/
H A DPolygon.java575 Polygon poly; field in class:Polygon.PolygonPathIterator
580 poly = pg;
604 return index > poly.npoints;
635 if (index >= poly.npoints) {
638 coords[0] = poly.xpoints[index];
639 coords[1] = poly.ypoints[index];
666 if (index >= poly.npoints) {
669 coords[0] = poly.xpoints[index];
670 coords[1] = poly.ypoints[index];
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dzcrc32.c134 unsigned long poly; /* polynomial exclusive-or pattern */ local
146 poly = 0UL;
148 poly |= 1UL << (31 - p[n]);
154 c = c & 1 ? poly ^ (c >> 1) : c >> 1;
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DHelpers.java196 static float polyLineLength(float[] poly, final int off, final int nCoords) { argument
197 assert nCoords % 2 == 0 && poly.length >= off + nCoords : "";
200 acc += linelen(poly[i], poly[i+1], poly[i-2], poly[i-1]);
/openjdk7/jdk/test/java/awt/Graphics2D/RenderClipTest/
H A DRenderClipTest.java129 "[-cubic] [-quad] [-poly] [-path]");
151 System.err.println(" -poly Test Polygon shapes");
195 } else if (arg.equals("-poly")) {
261 "-cubic, -quad, -poly, or -path");
896 private Polygon poly; field in class:RenderClipTest.Poly
899 this.poly = new Polygon();
903 this.poly = p;
907 poly.reset();
908 poly.addPoint(randIntCoord(), randIntCoord());
909 poly
[all...]
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Decc_impl.h167 SECItem poly; /* irreducible binary polynomial for (GF2m) */ member in union:ECFieldIDStr::__anon939
H A Dec.c187 SECITEM_TO_MPINT( params->fieldID.u.poly, &irreducible );
292 CHECK_SEC_OK(SECITEM_CopyItem(arena, &key->ecParams.fieldID.u.poly,
293 &ecParams->fieldID.u.poly, kmflag));
H A Decdecode.c127 CHECK_OK(hexString2SECItem(NULL, &params->fieldID.u.poly,
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassReader.java679 Type poly = new ForAll(sigToTypeParams(), sigToType());
681 return poly;

Completed in 50 milliseconds