/external/qemu/distrib/sdl-1.2.15/docs/man3/ |
SDL_CreateRGBSurface.3 | 8 \fBSDL_Surface *\fBSDL_CreateRGBSurface\fP\fR(\fBUint32 flags, int width, int height, int depth, Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask\fR); 41 Uint32 rmask, gmask, bmask, amask; 47 gmask = 0x00ff0000; 52 gmask = 0x0000ff00; 58 rmask, gmask, bmask, amask);
|
SDL_CreateRGBSurfaceFrom.3 | 8 \fBSDL_Surface *\fBSDL_CreateRGBSurfaceFrom\fP\fR(\fBvoid *pixels, int width, int height, int depth, int pitch, Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask\fR);
|
SDL_PixelFormat.3 | 13 Uint32 Rmask, Gmask, Bmask, Amask; 113 temp=pixel&fmt->Gmask; /* Isolate green component */
|
/external/iptables/include/libipulog/ |
libipulog.h | 26 struct ipulog_handle *ipulog_create_handle(u_int32_t gmask);
|
/external/qemu/distrib/sdl-1.2.15/src/video/ |
SDL_pixels_c.h | 30 Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask); 32 Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask);
|
SDL_pixels.c | 38 Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask) 55 if ( Rmask || Bmask || Gmask ) { /* Packed pixels with custom mask */ 67 if ( Gmask ) { 68 for ( mask = Gmask; !(mask&0x01); mask >>= 1 ) 90 format->Gmask = Gmask; 104 format->Gmask = ((0xFF>>format->Gloss)<<format->Gshift); 117 format->Gmask = 0; 140 if ( Rmask || Bmask || Gmask ) { 157 if(Gmask) [all...] |
SDL_bmp.c | 56 Uint32 Gmask; 172 Rmask = Gmask = Bmask = 0; 182 Gmask = 0x03E0; 188 Gmask = 0x0000FF00; 194 Gmask = 0x0000FF00; 210 Gmask = SDL_ReadLE32(src); 225 biWidth, biHeight, biBitCount, Rmask, Gmask, Bmask, 0); 401 (saveme->format->Gmask == 0x0000FF00) && 405 (saveme->format->Gmask == 0x0000FF00) &&
|
SDL_surface.c | 39 Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask) 89 Gmask = video->displayformatalphapixel->Gmask; 97 Gmask = screen->format->Gmask; 102 surface->format = SDL_AllocFormat(depth, Rmask, Gmask, Bmask, Amask); 156 Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask) 161 Rmask, Gmask, Bmask, Amask); 826 format->Rmask, format->Gmask, format->Bmask, format->Amask);
|
SDL_blit_A.c | 285 if (alpha == 128 && (df->Rmask | df->Gmask | df->Bmask) == 0x00FFFFFF) { 505 Uint32 chanmask = df->Rmask | df->Gmask | df->Bmask; 508 if (alpha == 128 && (df->Rmask | df->Gmask | df->Bmask) == 0x00FFFFFF) { 605 Uint32 chanmask = sf->Rmask | sf->Gmask | sf->Bmask; 758 Uint32 gmask = RESHIFT(srcfmt->Gshift) << (dstfmt->Gshift); local 765 amask = 0x10101010 & ((dstfmt->Rmask | dstfmt->Gmask | dstfmt->Bmask) ^ 0xFFFFFFFF); 768 ((unsigned int *)(char*)&srcvec)[0] = (rmask | gmask | bmask | amask); 950 Uint32 rgbmask = srcfmt->Rmask | srcfmt->Gmask | srcfmt->Bmask 2173 __m64 src1, dst1, src2, dst2, gmask, bmask, mm_res, mm_alpha; local 2307 __m64 src1, dst1, src2, dst2, rmask, gmask, bmask, mm_res, mm_alpha; local [all...] |
SDL_RLEaccel.c | 639 switch(fmt->Rmask | fmt->Gmask | fmt->Bmask) { \ 641 if(fmt->Gmask == 0x07e0 \ 657 if(fmt->Gmask == 0x03e0 \ 683 if((fmt->Rmask | fmt->Gmask | fmt->Bmask) == 0x00ffffff \ 684 && (fmt->Gmask == 0xff00 || fmt->Rmask == 0xff00 \ 725 switch(fmt->Rmask | fmt->Gmask | fmt->Bmask) { \ 727 if(fmt->Gmask == 0x07e0 \ 740 if(fmt->Gmask == 0x03e0 \ 763 if((fmt->Rmask | fmt->Gmask | fmt->Bmask) == 0x00ffffff \ 764 && (fmt->Gmask == 0xff00 || fmt->Rmask == 0xff00 [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
s_masking.c | 73 const GLushort gMask = ctx->Color.ColorMask[buf][GCOMP] ? 0xffff : 0x0; 81 src[i][GCOMP] = (src[i][GCOMP] & gMask) | (dst[i][GCOMP] & ~gMask); 89 const GLuint gMask = ctx->Color.ColorMask[buf][GCOMP] ? ~0x0 : 0x0; 97 src[i][GCOMP] = (src[i][GCOMP] & gMask) | (dst[i][GCOMP] & ~gMask);
|
/external/mesa3d/src/mesa/swrast/ |
s_masking.c | 73 const GLushort gMask = ctx->Color.ColorMask[buf][GCOMP] ? 0xffff : 0x0; 81 src[i][GCOMP] = (src[i][GCOMP] & gMask) | (dst[i][GCOMP] & ~gMask); 89 const GLuint gMask = ctx->Color.ColorMask[buf][GCOMP] ? ~0x0 : 0x0; 97 src[i][GCOMP] = (src[i][GCOMP] & gMask) | (dst[i][GCOMP] & ~gMask);
|
/external/qemu/distrib/sdl-1.2.15/docs/html/ |
sdlcreatergbsurface.html | 109 >(Uint32 flags, int width, int height, int depth, Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask);</CODE 306 Uint32 rmask, gmask, bmask, amask; 312 gmask = 0x00ff0000; 317 gmask = 0x0000ff00; 323 rmask, gmask, bmask, amask);
|
/external/qemu/distrib/sdl-1.2.15/src/video/dc/ |
SDL_dcvideo.c | 145 vformat->Gmask = 0x000007e0; 194 Uint32 Rmask, Gmask, Bmask; 208 Gmask = 0x000003e0; 214 Gmask = 0x000007e0; 220 Gmask = 0x0000ff00; 232 if ( ! SDL_ReallocFormat(current, bpp, Rmask, Gmask, Bmask, 0) ) {
|
/external/qemu/android/skin/ |
surface.c | 92 Uint32 rmask, gmask, bmask, amask; local 95 rmask = gmask = bmask = 0; 99 gmask = ARGB32_G_MASK; 106 rmask, gmask, bmask, amask ); 117 Uint32 rmask, gmask, bmask, amask; local 120 rmask = gmask = bmask = 0; 124 gmask = ARGB32_G_MASK; 131 rmask, gmask, bmask, amask );
|
/external/qemu/distrib/sdl-1.2.15/src/video/vgl/ |
SDL_vglvideo.h | 42 int Gmask;
|
SDL_vglvideo.c | 349 VGLCurMode->Gmask = modes[i]->Gmask; 381 VGLCurMode->Gmask, VGLCurMode->Bmask, 0)) { 580 modescp->Gmask = ((1 << minfo.vi_pixel_fsizes[VGL_GREEN_INDEX]) - 1) <<
|
/external/qemu/distrib/sdl-1.2.15/src/video/directfb/ |
SDL_DirectFB_video.c | 230 if (format->Rmask && format->Gmask && format->Bmask) 239 format->Gmask == 0x07E0 && 246 format->Gmask == 0x03E0 && 253 format->Gmask == 0x00FF00 && 260 format->Gmask == 0x00FF00 && 318 format->Amask = format->Rmask = format->Gmask = format->Bmask = 0; 329 format->Gmask = 0x000003E0; 335 format->Gmask = 0x000007E0; 345 format->Gmask = 0x0000FF00; 351 format->Gmask = 0x000000FF [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/riscos/ |
SDL_riscosvideo.c | 196 vformat->Gmask = 0x000003e0; 205 vformat->Gmask = 0x0000ff00; 212 vformat->Gmask = 0;
|
SDL_wimpvideo.c | 86 Uint32 Gmask = 0; 105 Gmask = 0x000003e0; 112 Gmask = 0x0000ff00; 126 if ( ! SDL_ReallocFormat(current, bpp, Rmask, Gmask, Bmask, 0) ) {
|
/external/chromium_org/third_party/skia/src/views/sdl/ |
SkOSWindow_SDL.cpp | 49 uint32_t gmask = SK_G32_MASK << SK_G32_SHIFT; local 60 32, rmask, gmask, bmask, amask);
|
/external/qemu/distrib/sdl-1.2.15/src/video/gem/ |
SDL_gemvideo.h | 146 #define VDI_FBMASK(amask, rmask, gmask, bmask) \ 149 VDI_greenmask = (gmask); \
|
/external/skia/src/views/sdl/ |
SkOSWindow_SDL.cpp | 49 uint32_t gmask = SK_G32_MASK << SK_G32_SHIFT; local 60 32, rmask, gmask, bmask, amask);
|
/external/qemu/distrib/sdl-1.2.15/src/video/nds/ |
SDL_ndsvideo.c | 173 vformat->Gmask = 0x000007e0; 242 Uint32 Rmask, Gmask, Bmask, Amask; 250 Gmask = 0x000003E0; 272 Gmask = 0x00000000; 314 if ( ! SDL_ReallocFormat(current, bpp, Rmask, Gmask, Bmask, Amask) ) {
|
/external/libpng/contrib/gregbook/ |
rpng-x.c | 145 static ulg RMask, GMask, BMask; 504 GMask = visual->green_mask; 518 GShift = 15 - rpng_x_msb(GMask); 524 GShift = rpng_x_msb(GMask) - 7; 528 GShift = 7 - rpng_x_msb(GMask); 619 ((((ulg)bg_green << 8) >> GShift) & GMask) | 730 pixel = (red & RMask) | (green & GMask) | (blue & BMask); 794 ((green >> GShift) & GMask) | 826 ((green >> GShift) & GMask) |
|