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

12

/openjdk10/jdk/src/java.desktop/unix/native/libawt/java2d/loops/
H A Dvis_ByteGray.c584 jint argb = srcLut[src[i]]; local
586 b = (argb) & 0xff;
587 g = (argb >> 8) & 0xff;
588 r = (argb >> 16) & 0xff;
659 jint argb = srcLut[src[tmpsxloc >> shift]]; local
661 b = (argb) & 0xff;
662 g = (argb >> 8) & 0xff;
663 r = (argb >> 16) & 0xff;
731 mlib_s32 argb = srcLut[src[i]]; local
732 if (argb <
818 mlib_s32 argb = srcLut[src[i]]; local
902 mlib_s32 argb = srcLut[src[tmpsxloc >> shift]]; local
[all...]
H A Dvis_UshortGray.c349 jint argb = srcLut[src[i]]; local
351 b = (argb) & 0xff;
352 g = (argb >> 8) & 0xff;
353 r = (argb >> 16) & 0xff;
423 jint argb = srcLut[src[tmpsxloc >> shift]]; local
425 b = (argb) & 0xff;
426 g = (argb >> 8) & 0xff;
427 r = (argb >> 16) & 0xff;
494 mlib_s32 argb = srcLut[src[i]]; local
495 if (argb <
565 mlib_s32 argb = srcLut[src[i]]; local
649 mlib_s32 argb = srcLut[src[tmpsxloc >> shift]]; local
[all...]
H A Dvis_FourByteAbgr.c125 mlib_u32 *argb = (mlib_u32 *)dstBase; local
164 for (i = 0; i < height; i++, argb += dstScan, abgr += srcScan) {
165 if ((((mlib_addr) argb | (mlib_addr) abgr) & 7) == 0) {
167 mlib_d64 *d_argb = (mlib_d64 *) argb;
179 ((mlib_f32 *) argb)[2 * count] = vis_read_hi(w_abgr);
190 ((mlib_f32 *) argb)[2 * j] = vis_read_hi(w_abgr);
191 ((mlib_f32 *) argb)[2 * j + 1] = vis_read_lo(w_abgr);
198 ((mlib_f32 *) argb)[2 * count] = vis_read_hi(w_abgr);
208 for (i = 0; i < height; i++, argb += dstScan, abgr += srcScan) {
212 if (((mlib_addr) argb
259 mlib_u32 *argb = (mlib_u32 *)srcBase; local
381 mlib_u32 *argb = (mlib_u32 *)srcBase; local
[all...]
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...]
/openjdk10/jdk/test/javax/imageio/plugins/gif/
H A DTransparencyTest.java94 int argb = tmp.getRGB(x, y);
95 if (Color.pink.getRGB() != argb) {
97 " - " + Integer.toHexString(argb));
/openjdk10/jdk/src/java.desktop/share/native/libawt/java2d/loops/
H A DUshort4444Argb.h93 #define LoadUshort4444ArgbTo1IntArgb(pRas, PREFIX, x, argb) \
97 (argb) = (a << 24) | (r << 16) | (g << 8) | (b << 0); \
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)
/openjdk10/jdk/src/java.desktop/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];
/openjdk10/jdk/test/javax/swing/text/StyledEditorKit/8016833/
H A Dbug8016833.java91 boolean isPixelEmpty(int argb) { argument
92 return (argb & 0x00FFFFFF) == (getEmptyPixel() & 0x00FFFFFF);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/nimbus/
H A DNimbusLookAndFeel.java408 int argb = deriveARGB(color1, color2, midPoint);
410 return new ColorUIResource(argb);
412 return new Color(argb);
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/common/
H A DPaletteBuilder.java193 int argb = srcColorModel.getRGB(srcRaster.getDataElements(x, y, null));
194 return new Color(argb, transparency != Transparency.OPAQUE);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/synth/
H A DSynthParser.java592 int argb;
598 argb = Integer.decode(value);
602 argb = Integer.decode(value);
615 argb = (a << 24) | rgb;
622 color = new ColorUIResource(new Color(argb, hasAlpha));
/openjdk10/jdk/src/java.desktop/share/native/libawt/awt/medialib/
H A Dawt_ImagingLib.c150 colorMatch(int r, int g, int b, int a, unsigned char *argb, int numColors);
2761 int *argb; local
2814 argb = (*env)->GetPrimitiveArrayCritical(env, cmodelP->jrgb, NULL);
2815 if (argb == NULL) {
2828 (unsigned char *)argb, cmodelP->mapSize);
2833 (*env)->ReleasePrimitiveArrayCritical(env, cmodelP->jrgb, argb, JNI_ABORT);
4004 colorMatch(int r, int g, int b, int a, unsigned char *argb, int numColors) { argument
4016 for (i = 0 ; i < numColors ; i++, argb+=4) {
4017 red = argb[1];
4018 green = argb[
[all...]

Completed in 151 milliseconds

12