Searched refs:argb (Results 26 - 33 of 33) sorted by relevance

12

/openjdk7/jdk/src/share/classes/java/awt/
H A DMultipleGradientPaintContext.java254 int argb = colors[i].getRGB();
255 int a = argb >>> 24;
256 int r = SRGBtoLinearRGB[(argb >> 16) & 0xff];
257 int g = SRGBtoLinearRGB[(argb >> 8) & 0xff];
258 int b = SRGBtoLinearRGB[(argb ) & 0xff];
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DLoopMacros.h188 * via an intermediate "jint argb" format.
194 int argb; \
195 Load ## SRCTYPE ## To1IntArgb(SRCPTR, SRCPREFIX, SXVAR, argb); \
196 Store ## DSTTYPE ## From1IntArgb(DSTPTR, DSTPREFIX, DXVAR, argb); \
371 jint argb = srcLut[x]; \
372 Store ## DST ## From1IntArgb(PIXLUT, PreLut, x, argb); \
427 jint argb = srcLut[x]; \
428 if (argb < 0) { \
430 (PIXLUT, PreLut, x, argb); \
464 jint argb; \
[all...]
H A DAnyByteBinary.h116 #define LoadByteBinaryTo1IntArgb(TYPE, pRas, PREFIX, x, argb) \
117 (argb) = PREFIX ## Lut[CurrentPixelByteBinary(TYPE, PREFIX)]
127 jint argb = PREFIX ## Lut[CurrentPixelByteBinary(TYPE, PREFIX)]; \
128 ExtractIntDcmComponents1234(argb, a, r, g, b); \
138 #define StoreByteBinaryFrom1IntArgb(TYPE, pRas, PREFIX, x, argb) \
139 StoreByteBinaryFrom1IntRgb(TYPE, pRas, PREFIX, x, argb)
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DNimbusLookAndFeel.java407 int argb = deriveARGB(color1, color2, midPoint);
409 return new ColorUIResource(argb);
411 return new Color(argb);
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/common/
H A DPaletteBuilder.java197 int argb = srcColorModel.getRGB(srcRaster.getDataElements(x, y, null));
198 return new Color(argb, transparency != Transparency.OPAQUE);
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dvis_IntArgbPre.c119 mlib_u32 argb = src[tmpsxloc >> shift]; local
121 b = argb & 0xff;
122 g = (argb >> 8) & 0xff;
123 r = (argb >> 16) & 0xff;
124 a = argb >> 24;
280 mlib_u32 argb = src[tmpsxloc >> shift]; local
282 b = argb & 0xff;
283 g = (argb >> 8) & 0xff;
284 r = (argb >> 16) & 0xff;
285 a = argb >> 2
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthParser.java591 int argb;
597 argb = Integer.decode(value);
601 argb = Integer.decode(value);
614 argb = (a << 24) | rgb;
621 color = new ColorUIResource(new Color(argb, hasAlpha));
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dawt_ImagingLib.c150 colorMatch(int r, int g, int b, int a, unsigned char *argb, int numColors);
2762 int *argb; local
2815 argb = (*env)->GetPrimitiveArrayCritical(env, cmodelP->jrgb, NULL);
2816 if (argb == NULL) {
2829 (unsigned char *)argb, cmodelP->mapSize);
2834 (*env)->ReleasePrimitiveArrayCritical(env, cmodelP->jrgb, argb, JNI_ABORT);
4012 colorMatch(int r, int g, int b, int a, unsigned char *argb, int numColors) { argument
4024 for (i = 0 ; i < numColors ; i++, argb+=4) {
4025 red = argb[1];
4026 green = argb[
[all...]

Completed in 52 milliseconds

12