Searched refs:poly (Results 1 - 8 of 8) sorted by relevance
/openjdk7/jdk/src/share/classes/java/awt/ |
H A D | Polygon.java | 575 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 D | zcrc32.c | 134 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 D | Helpers.java | 196 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 D | RenderClipTest.java | 129 "[-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 D | ecc_impl.h | 167 SECItem poly; /* irreducible binary polynomial for (GF2m) */ member in union:ECFieldIDStr::__anon939
|
H A D | ec.c | 187 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 D | ecdecode.c | 127 CHECK_OK(hexString2SECItem(NULL, ¶ms->fieldID.u.poly,
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/ |
H A D | ClassReader.java | 679 Type poly = new ForAll(sigToTypeParams(), sigToType()); 681 return poly;
|
Completed in 54 milliseconds