HomeSort by relevance Sort by last modified time
    Searched full:bmask (Results 1 - 25 of 50) sorted by null

1 2

  /external/qemu/distrib/sdl-1.2.12/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 */
75 if ( Bmask ) {
76 for ( mask = Bmask; !(mask&0x01); mask >>= 1 )
91 format->Bmask = Bmask;
105 format->Bmask = ((0xFF>>format->Bloss)<<format->Bshift);
118 format->Bmask = 0;
140 if ( Rmask || Bmask || Gmask ) {
166 if(Bmask)
    [all...]
SDL_bmp.c 57 Uint32 Bmask;
153 Rmask = Gmask = Bmask = 0;
164 Bmask = 0x001F;
170 Bmask = 0x00FF0000;
176 Bmask = 0x000000FF;
192 Bmask = SDL_ReadLE32(src);
206 biWidth, biHeight, biBitCount, Rmask, Gmask, Bmask, 0);
373 (saveme->format->Bmask == 0x000000FF)
377 (saveme->format->Bmask == 0x00FF0000)
SDL_surface.c 39 Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask)
90 Bmask = video->displayformatalphapixel->Bmask;
98 Bmask = screen->format->Bmask;
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 284 if (alpha == 128 && (df->Rmask | df->Gmask | df->Bmask) == 0x00FFFFFF) {
504 Uint32 chanmask = df->Rmask | df->Gmask | df->Bmask;
507 if (alpha == 128 && (df->Rmask | df->Gmask | df->Bmask) == 0x00FFFFFF) {
604 Uint32 chanmask = sf->Rmask | sf->Gmask | sf->Bmask;
758 Uint32 bmask = RESHIFT(srcfmt->Bshift) << (dstfmt->Bshift); local
764 amask = 0x10101010 & ((dstfmt->Rmask | dstfmt->Gmask | dstfmt->Bmask) ^ 0xFFFFFFFF);
767 ((unsigned int *)(char*)&srcvec)[0] = (rmask | gmask | bmask | amask);
949 Uint32 rgbmask = srcfmt->Rmask | srcfmt->Gmask | srcfmt->Bmask;
2172 __m64 src1, dst1, src2, dst2, gmask, bmask, mm_res, mm_alpha; local
2306 __m64 src1, dst1, src2, dst2, rmask, gmask, bmask, mm_res, mm_alpha; local
    [all...]
SDL_RLEaccel.c 638 switch(fmt->Rmask | fmt->Gmask | fmt->Bmask) { \
642 || fmt->Bmask == 0x07e0) { \
658 || fmt->Bmask == 0x03e0) { \
682 if((fmt->Rmask | fmt->Gmask | fmt->Bmask) == 0x00ffffff \
684 || fmt->Bmask == 0xff00)) { \
724 switch(fmt->Rmask | fmt->Gmask | fmt->Bmask) { \
728 || fmt->Bmask == 0x07e0) { \
741 || fmt->Bmask == 0x03e0) { \
762 if((fmt->Rmask | fmt->Gmask | fmt->Bmask) == 0x00ffffff \
764 || fmt->Bmask == 0xff00)) {
    [all...]
SDL_video.c 249 vformat.Rmask, vformat.Gmask, vformat.Bmask, 0);
514 Uint32 Rmask, Gmask, Bmask;
520 Bmask = (SDL_VideoSurface->format)->Bmask;
522 Rmask = Gmask = Bmask = 0;
526 depth, Rmask, Gmask, Bmask, 0);
946 Uint32 bmask = 0x000000ff; local
960 (vf->Bmask == 0xf800 || vf->Bmask == 0x7c00)) {
962 bmask = 0xff0000
    [all...]
SDL_blit.h 93 b = (((Pixel&fmt->Bmask)>>fmt->Bshift)<<fmt->Bloss); \
272 b = ((Pixel&fmt->Bmask)>>fmt->Bshift)<<fmt->Bloss; \
279 b = (Pixel&fmt->Bmask)>>fmt->Bshift; \
SDL_yuv_sw.c 939 Uint32 Rmask, Gmask, Bmask;
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/dc/
SDL_dcvideo.c 146 vformat->Bmask = 0x0000001f;
194 Uint32 Rmask, Gmask, Bmask;
209 Bmask = 0x0000001f;
215 Bmask = 0x0000001f;
221 Bmask = 0x000000ff;
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;
100 bmask = ARGB32_B_MASK;
106 rmask, gmask, bmask, amask );
117 Uint32 rmask, gmask, bmask, amask; local
120 rmask = gmask = bmask = 0;
125 bmask = ARGB32_B_MASK;
131 rmask, gmask, bmask, amask );
  /external/qemu/distrib/sdl-1.2.12/src/video/vgl/
SDL_vglvideo.h 43 int Bmask;
SDL_vglvideo.c 352 VGLCurMode->Bmask = modes[i]->Bmask;
383 VGLCurMode->Gmask, VGLCurMode->Bmask, 0)) {
590 modescp->Bmask = ((1 << minfo.vi_pixel_fsizes[VGL_BLUE_INDEX]) - 1) <<
  /external/qemu/distrib/sdl-1.2.12/src/video/directfb/
SDL_DirectFB_video.c 230 if (format->Rmask && format->Gmask && format->Bmask)
240 format->Bmask == 0x001F)
247 format->Bmask == 0x001F)
254 format->Bmask == 0x0000FF)
261 format->Bmask == 0x0000FF)
318 format->Amask = format->Rmask = format->Gmask = format->Bmask = 0;
330 format->Bmask = 0x0000001F;
336 format->Bmask = 0x0000001F;
346 format->Bmask = 0x000000FF;
352 format->Bmask = 0x000000FF
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/riscos/
SDL_riscosvideo.c 195 vformat->Bmask = 0x00007c00;
204 vformat->Bmask = 0x00ff0000;
211 vformat->Bmask = 0;
SDL_wimpvideo.c 87 Uint32 Bmask = 0;
104 Bmask = 0x00007c00;
111 Bmask = 0x00ff0000;
126 if ( ! SDL_ReallocFormat(current, bpp, Rmask, Gmask, Bmask, 0) ) {
SDL_riscosFullScreenVideo.c 102 Uint32 Bmask = 0;
113 Bmask = 0x00007c00;
119 Bmask = 0x00ff0000;
139 if ( ! SDL_ReallocFormat(current, bpp, Rmask, Gmask, Bmask, 0) ) {
  /external/qemu/distrib/sdl-1.2.12/src/video/gem/
SDL_gemvideo.h 146 #define VDI_FBMASK(amask, rmask, gmask, bmask) \
150 VDI_bluemask = (bmask);
  /external/qemu/distrib/sdl-1.2.12/src/video/windib/
SDL_dibvideo.c 311 vformat->Bmask = 0x0000001f;
317 vformat->Bmask = 0x0000001f;
324 vformat->Bmask = 0x000000ff;
497 Uint32 Rmask, Gmask, Bmask;
516 Bmask = 0x0000001f;
521 Bmask = 0x0000001f;
529 Bmask = 0x000000ff;
534 Bmask = 0x00000000;
538 0, 0, bpp, Rmask, Gmask, Bmask, 0);
750 ((Uint32*)binfo->bmiColors)[2] = video->format->Bmask;
    [all...]
  /external/libpng/contrib/gregbook/
rpng-x.c 145 static ulg RMask, GMask, BMask;
505 BMask = visual->blue_mask;
519 BShift = 15 - rpng_x_msb(BMask);
525 BShift = rpng_x_msb(BMask) - 7;
529 BShift = 7 - rpng_x_msb(BMask);
620 ((((ulg)bg_blue << 8) >> BShift) & BMask);
730 pixel = (red & RMask) | (green & GMask) | (blue & BMask);
795 ((blue >> BShift) & BMask);
827 ((blue >> BShift) & BMask);
  /external/qemu/distrib/sdl-1.2.12/src/video/ipod/
SDL_ipodvideo.c 298 vformat->Bmask = 0x001F;
301 vformat->Rmask = vformat->Gmask = vformat->Bmask = 0;
337 Uint32 Rmask, Gmask, Bmask;
341 Bmask = 0x001F;
343 Rmask = Gmask = Bmask = 0;
355 if (!SDL_ReallocFormat (current, bpp, Rmask, Gmask, Bmask, 0)) {
  /external/qemu/distrib/sdl-1.2.12/src/video/gapi/
SDL_gapivideo.c 550 vformat->Bmask = 0x0000001f;
558 vformat->Bmask = 0x0000001f;
567 vformat->Bmask = 0x0000001f;
592 Uint32 Rmask, Gmask, Bmask;
611 Bmask = 0;
619 Bmask = 0x0000001f;
624 Bmask = 0x0000001f;
631 Bmask = 0x000000ff;
638 0, 0, bpp, Rmask, Gmask, Bmask, 0);
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacdec/
check_crc.cpp 130 UInt32 bMask = (1UL << (nBits - 1));
132 for (i = 0; i < nBits; i++, bMask >>= 1)
135 UInt16 flag1 = (UInt16)((bMask & bValue) ? 1 : 0);
  /external/qemu/hw/
goldfish_fb.c 141 uint32_t rmask, gmask, bmask, amask; member in struct:__anon10068
176 pf->bbits, pf->bmask, pf->bshift, pf->bmax);
189 pf->bmask == fbc->bmask &&
  /external/qemu/
console.c     [all...]

Completed in 710 milliseconds

1 2