HomeSort by relevance Sort by last modified time
    Searched defs:bpp (Results 26 - 50 of 60) sorted by null

12 3

  /external/qemu/distrib/sdl-1.2.12/src/video/quartz/
SDL_QuartzVideo.h 90 Uint32 width, height, bpp; /* frequently used data about the display */ member in struct:SDL_PrivateVideoData
138 #define device_bpp (this->hidden->bpp)
189 int QZ_SetupOpenGL (_THIS, int bpp, Uint32 flags);
  /external/qemu/distrib/sdl-1.2.12/src/video/riscos/
SDL_riscosFullScreenVideo.c 53 int pixel_depth; // 2^pixel_depth = bpp,i.e. 0 = 1, 1 = 2, 4 = 16, 5 = 32
61 int FULLSCREEN_SetMode(int width, int height, int bpp);
80 static int FULLSCREEN_AddMode(_THIS, int bpp, int w, int h);
91 extern unsigned char *WIMP_CreateBuffer(int width, int height, int bpp);
97 int width, int height, int bpp, Uint32 flags)
105 switch(bpp)
130 if (FULLSCREEN_SetMode(width, height, bpp) == 0)
139 if ( ! SDL_ReallocFormat(current, bpp, Rmask, Gmask, Bmask, 0) ) {
194 this->hidden->bank[0] = WIMP_CreateBuffer(width, height, bpp);
215 if (bpp == 8) this->hidden->bank[0] += 2048; /* 8bpp sprite have palette first *
751 int bpp = this->screen->format->BitsPerPixel; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/svga/
SDL_svgavideo.c 56 static SDL_Surface *SVGA_SetVideoMode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags);
340 int width, int height, int bpp, Uint32 flags)
354 bpp = (bpp+7)/8-1;
355 for ( mode=0; SDL_modelist[bpp][mode]; ++mode ) {
356 if ( (SDL_modelist[bpp][mode]->w == width) &&
357 (SDL_modelist[bpp][mode]->h == height) ) {
361 if ( SDL_modelist[bpp][mode] == NULL ) {
365 vgamode = SDL_vgamode[bpp][mode];
375 modeinfo = vga_getmodeinfo(SDL_vgamode[bpp][mode])
498 int bpp = this->screen->format->BytesPerPixel; local
    [all...]
  /hardware/msm7k/libgralloc/
gralloc.cpp 470 int bpp = 0; local
475 bpp = 4;
478 bpp = 3;
483 bpp = 2;
495 size = stride * h * bpp;
498 size_t bpr = (w*bpp + (align-1)) & ~(align-1);
500 stride = bpr / bpp;
  /cts/tools/host/src/com/android/cts/
HostUtils.java 65 * Convert a 16bpp RawImage into a BufferedImage.
71 assert rawImage.bpp == 16;
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11video.h 110 int bpp; /* pixel quantum in bits */ member in struct:SDL_PrivateVideoData::__anon6243
115 int depth; /* current visual depth (not bpp) */
  /frameworks/base/libs/rs/
rsAllocation.cpp 575 uint32_t bpp = srcE->getSizeBytes(); local
576 size_t size = w2 * h2 * bpp;
582 uint8_t * ydst = &tmp[(y + ((h2 - h) >> 1)) * w2 * bpp];
583 memcpy(&ydst[((w2 - w) >> 1) * bpp], src, w * bpp);
584 src += w * bpp;
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
rate_control.cpp 172 double L1, L2, L3, bpp; local
249 bpp = 1.0 * rateCtrl->bitRate / (rateCtrl->frame_rate * (video->PicSizeInMbs << 8));
271 if (bpp <= L1)
273 else if (bpp <= L2)
275 else if (bpp <= L3)
    [all...]
  /development/tools/monkeyrunner/src/com/android/monkeyrunner/
MonkeyRunner.java 576 assert rawImage.bpp == 16;
  /external/qemu/distrib/libpng-1.2.19/
pngvcrd.c 21 * [png_read_filter_row_mmx_avg() bpp == 2 bugfix, GRR 20000916]
150 __int64 mask2=0x0101010202020404, //24bpp
276 } // end 24 bpp
285 __int64 mask3=0x0101010102020202, //32bpp
420 } // end 32 bpp
526 } // end 8 bpp
808 } // end 16 bpp
972 } // end 48 bpp
1942 int bpp; local
2382 int bpp; local
3279 int bpp; local
3769 png_uint_32 bpp = (row_info->pixel_depth + 7) >> 3; local
3828 png_uint_32 bpp = (row_info->pixel_depth + 7) >> 3; local
3867 png_uint_32 bpp = (row_info->pixel_depth + 7) >> 3; local
    [all...]
pnggccrd.c 205 * - fixed bug in png_read_filter_row_mmx_avg(), bpp == 2 case; three errors:
298 * 0x0000000000ffffffLL (bpp 3, avg) _amask5_3_0
299 * 0xffffffffffffffffLL (bpp 4, 6, avg) _amask0_8_0
300 * 0x000000000000ffffLL (bpp 2, avg) _amask6_2_0
301 * 0x0000000000ffffffLL (bpp 3, paeth) _amask5_3_0
302 * 0x00000000ffffffffLL (bpp 6, paeth) _amask4_4_0
303 * 0x00000000ffffffffLL (bpp 4, paeth) _amask4_4_0
304 * 0x00000000ffffffffLL (bpp 8, paeth) _amask4_4_0
305 * 0x0000ffffff000000LL (bpp 3, sub) _amask2_3_3
306 * 0x00000000ffff0000LL (bpp 2, sub) _amask4_2_
3247 int bpp; local
4012 int bpp; local
5126 int bpp; local
5883 png_uint_32 bpp = (row_info->pixel_depth + 7) >> 3; local
5942 png_uint_32 bpp = (row_info->pixel_depth + 7) >> 3; local
5983 png_uint_32 bpp = (row_info->pixel_depth + 7) >> 3; local
    [all...]
pngwutil.c 2114 png_uint_32 mins, bpp; local
    [all...]
pngrutil.c 3199 png_uint_32 bpp = (row_info->pixel_depth + 7) >> 3; local
3232 png_uint_32 bpp = (row_info->pixel_depth + 7) >> 3; local
3258 png_uint_32 bpp = (row_info->pixel_depth + 7) >> 3; local
3761 png_uint_32 bpp = (row_info->pixel_depth + 7) >> 3; local
3792 png_uint_32 bpp = (row_info->pixel_depth + 7) >> 3; local
3817 png_uint_32 bpp = (row_info->pixel_depth + 7) >> 3; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_RLEaccel.c 110 #define PIXEL_COPY(to, from, len, bpp) \
112 if(bpp == 4) { \
115 SDL_memcpy(to, from, (size_t)(len) * (bpp)); \
123 #define OPAQUE_BLIT(to, from, length, bpp, alpha) \
124 PIXEL_COPY(to, from, length, bpp)
128 #define ALPHA_BLIT32_888MMX(to, from, length, bpp, alpha) \
200 #define ALPHA_BLIT16_565MMX(to, from, length, bpp, alpha) \
290 #define ALPHA_BLIT16_555MMX(to, from, length, bpp, alpha) \
383 * For 32bpp pixels on the form 0x00rrggbb:
389 #define ALPHA_BLIT32_888(to, from, length, bpp, alpha)
1650 int bpp = surface->format->BytesPerPixel; local
1836 int bpp = df->BytesPerPixel; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/gapi/
SDL_gapivideo.c 34 // TODO: optimize 8bpp landscape mode
77 extern int DIB_AddMode(_THIS, int bpp, int w, int h);
82 static SDL_Surface *GAPI_SetVideoMode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags);
189 static int GAPI_AddMode(_THIS, int bpp, int w, int h)
196 if ( bpp < 8 ) { /* Not supported */
199 index = ((bpp+7)/8)-1;
427 /* unknown pixel format, try define by BPP! */
499 int i,bpp; local
510 // SDL does not supports 2/4bpp mode, so use 16 bpp
1180 int bpp = 16; \/\/ we always use either 8 or 16 bpp internally local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/gem/
SDL_gemvideo.h 58 short bpp; /* Colour depth */ member in struct:SDL_PrivateVideoData
101 #define VDI_bpp (this->hidden->bpp)
155 TC: 8 (chunky),15,16,24,32 bpp
156 8I: 8 bpp planes
  /frameworks/base/libs/surfaceflinger_client/
Surface.cpp 69 const size_t bpp = bytesPerPixel(src->format); local
70 const size_t dbpr = dst->stride * bpp;
71 const size_t sbpr = src->stride * bpp;
77 size_t size = r.width() * bpp;
78 uint8_t const * s = src_bits + (r.left + src->stride * r.top) * bpp;
79 uint8_t * d = dst_bits + (r.left + dst->stride * r.top) * bpp;
    [all...]
  /frameworks/base/tools/aapt/
Images.cpp 33 // This holds an image as 8bpp RGBA.
620 int bpp; local
622 bpp = 1;
624 bpp = 2;
627 bpp = 4;
639 row += bpp;
644 switch (bpp) {
757 int bpp = isOpaque ? 3 : 4; local
758 int paletteSize = w * h + bpp * num_colors;
764 paletteSize, 2 * w * h, bpp * w * h))
    [all...]
  /external/libpng/
pngwutil.c 2150 png_uint_32 mins, bpp; local
    [all...]
pngrutil.c 2956 png_uint_32 bpp = (row_info->pixel_depth + 7) >> 3; local
2987 png_uint_32 bpp = (row_info->pixel_depth + 7) >> 3; local
3012 png_uint_32 bpp = (row_info->pixel_depth + 7) >> 3; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
Xvproto.h 115 CARD8 bpp; member in struct:__anon6095
  /external/qemu/distrib/sdl-1.2.12/src/video/windx5/
SDL_dx5video.c 408 static SDL_Surface *DX5_SetVideoMode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags);
656 int bpp = desc->ddpfPixelFormat.u1.dwRGBBitCount; local
659 int bpp = desc->ddpfPixelFormat.dwRGBBitCount; local
671 switch (bpp) {
676 bpp /= 8; --bpp;
677 if ( enumlists[bpp] &&
678 enumlists[bpp]->r.w == (Uint16)desc->dwWidth &&
679 enumlists[bpp]->r.h == (Uint16)desc->dwHeight ) {
680 if ( refreshRate > enumlists[bpp]->refreshRate &
987 int bpp; local
    [all...]
  /external/skia/src/core/
SkBitmap.cpp 154 int bpp; local
158 bpp = 0; // not applicable
163 bpp = 1;
167 bpp = 2;
170 bpp = 4;
174 bpp = 0; // error
177 return bpp;
    [all...]
  /external/libpng/contrib/gregbook/
rpng2-x.c 33 - 1.30: added -loop option for -bgpat (ifdef FEATURE_LOOP); fixed bpp =
1295 int bpp = ximage->bits_per_pixel; local
1420 int bpp = ximage->bits_per_pixel; local
1640 int bpp = ximage->bits_per_pixel; local
    [all...]
  /external/qemu/
console.c 232 int x, y, bpp; local
234 bpp = (ds_get_bits_per_pixel(ds) + 7) >> 3;
236 ds_get_linesize(ds) * posy + bpp * posx;
239 switch(bpp) {
268 int wb, y, bpp; local
270 bpp = (ds_get_bits_per_pixel(ds) + 7) >> 3;
271 wb = w * bpp;
274 ds_get_linesize(ds) * ys + bpp * xs;
276 ds_get_linesize(ds) * yd + bpp * xd;
284 ds_get_linesize(ds) * (ys + h - 1) + bpp * xs
433 unsigned int font_data, linesize, xorcol, bpp; local
    [all...]

Completed in 1295 milliseconds

12 3