Searched defs:argb (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/macosx/native/sun/java2d/opengl/
H A DCGLSurfaceData.h41 GLclampf argb[4]; // background clear color member in struct:_CGLSDOps
/openjdk7/jdk/src/solaris/native/sun/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_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...]
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...]
/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 68 milliseconds