/openjdk7/jdk/test/java/io/charStreams/ |
H A D | StringGenerator.java | 29 private IntGenerator ig; field in class:StringGenerator 34 public StringGenerator(IntGenerator ig, CharGenerator cg, int limit) { argument 35 this.ig = ig; 40 public StringGenerator(IntGenerator ig, CharGenerator cg) { argument 41 this(ig, cg, -1); 44 public StringGenerator(IntGenerator ig, int limit) { argument 45 this(ig, new CharGenerator(ig), limit); 48 public StringGenerator(IntGenerator ig) { argument [all...] |
H A D | LineGenerator.java | 29 IntGenerator ig; field in class:LineGenerator 33 public LineGenerator(IntGenerator ig, StringGenerator sg, int limit) { argument 34 this.ig = ig; 39 public LineGenerator(IntGenerator ig) { argument 40 this.ig = ig; 41 this.sg = new StringGenerator(ig); 60 t = ig.next(2);
|
H A D | StringConvert.java | 46 IntGenerator ig = new IntGenerator(); 57 cg = new CharGenerator(ig, 0, max); 58 sg = new StringGenerator(ig, cg, limit); 83 cg = new CharGenerator(ig, 0x20, 0x7e); 84 sg = new StringGenerator(ig, cg, limit); 99 cg = new CharGenerator(ig, 0x20, 0x7e); 100 sg = new StringGenerator(ig, cg, limit); 104 int o = ig.next(s.length() - 1); 105 int n = ig.next(s.length() - o); 117 cg = new CharGenerator(ig); [all...] |
H A D | RandomLineSource.java | 43 IntGenerator ig = new IntGenerator(); 44 lg = new LineGenerator(ig, new StringGenerator(ig), limit);
|
/openjdk7/jdk/test/java/awt/print/PrinterJob/ImagePrinting/ |
H A D | PrintARGBImage.java | 70 Graphics ig = bi.createGraphics(); 71 ig.setColor( new Color( 192, 192, 192, 80 ) ); 72 ig.fillRect( 0, 0, 100, 100 ); 73 ig.setColor( Color.BLACK ); 74 ig.drawRect( 0, 0, 99, 99 ); 75 ig.dispose();
|
/openjdk7/jdk/test/java/lang/invoke/7157574/ |
H A D | Test7157574.java | 79 private void ig() { throw new RuntimeException(); } 80 public void ig1() { ig(); } 81 public void ig2() { ig(); } 82 public void ig3() { ig(); } 83 public void ig4() { ig(); }
|
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Util/src/com/sun/hotspot/igv/util/ |
H A D | ExtendedSatelliteComponent.java | 97 Graphics2D ig = (Graphics2D) image.getGraphics(); 98 ig.scale(scale, scale); 99 scene.paint(ig);
|
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/ |
H A D | ExtendedSatelliteComponent.java | 98 Graphics2D ig = (Graphics2D) image.getGraphics(); 99 ig.scale(scale, scale); 101 scene.paint(ig);
|
/openjdk7/jdk/src/windows/native/sun/font/ |
H A D | lcdglyph.c | 95 double ig; local 115 ig = ((double)gamma)/100.0; 118 igTable[i] = (unsigned char)(pow(((double)i)/255.0, ig)*255);
|
/openjdk7/jdk/src/share/native/sun/font/ |
H A D | DrawGlyphList.c | 687 double ig,g; local 701 ig = ((double)gamma)/100.0; 702 g = 1.0/ig; 710 double igval = pow(val, ig); 749 UInt8 *g, *ig; 753 ig = getInvLCDGammaLUT(gamma); 771 printf("%4d, ",(int)(ig[i]&0xff));
|
/openjdk7/jdk/src/share/native/sun/awt/libpng/ |
H A D | png.c | 2201 * arithmetic error. This code follows the spec exactly; ig is 2210 png_uint_32 ig = (j << (8-shift)) + i; local 2213 double d = floor(65535*pow(ig/(double)max, gamma_val*.00001)+.5); 2217 ig = (ig * 65535U + max_by_2)/max; 2219 sub_table[j] = png_gamma_16bit_correct(ig, gamma_val); 2230 png_uint_32 ig = (j << (8-shift)) + i; local 2233 ig = (ig * 65535U + max_by_2)/max; 2235 sub_table[j] = (png_uint_16)ig; [all...] |
H A D | pngrtran.c | 752 int ir, ig, ib; local 764 for (ig = 0; ig < num_green; ig++) 766 /* int dg = abs(ig - g); */ 767 int dg = ((ig > g) ? ig - g : g - ig); 770 int index_g = index_r | (ig << PNG_QUANTIZE_BLUE_BITS);
|
/openjdk7/jdk/src/macosx/native/sun/awt/ |
H A D | LWCToolkit.m | 234 ig = (UInt32) (g*255+0.5), 238 // NSLog(@"%@ %d, %d, %d", c, ir, ig, ib); 240 return ((ia & 0xFF) << 24) | ((ir & 0xFF) << 16) | ((ig & 0xFF) << 8) | ((ib & 0xFF) << 0);
|
/openjdk7/jdk/src/share/native/sun/java2d/opengl/ |
H A D | OGLTextRenderer.c | 418 double ig = gamma; local 419 double g = 1.0 / ig; 432 GLfloat igz = (GLfloat)pow(zval, ig); 437 GLfloat igy = (GLfloat)pow(yval, ig); 442 GLfloat igx = (GLfloat)pow(xval, ig);
|