Searched defs:ig (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/test/java/io/charStreams/
H A DStringGenerator.java29 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 DLineGenerator.java29 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);
/openjdk7/jdk/src/windows/native/sun/font/
H A Dlcdglyph.c95 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 DDrawGlyphList.c687 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/java2d/opengl/
H A DOGLTextRenderer.c418 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);
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpng.c2201 * 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 Dpngrtran.c752 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);

Completed in 65 milliseconds