| /external/pixman/pixman/ |
| pixman-arm-simd-asm.h | 162 .macro preload_leading_step1 bpp, ptr, base 167 .if bpp > 0 177 .macro preload_leading_step2 bpp, bpp_shift, ptr, base 189 .if bpp > 0 195 .if bpp/dst_w_bpp == 4 217 .macro preload_middle bpp, base, scratch_holds_offset 218 .if bpp > 0 219 /* prefetch distance = 256/bpp, stm distance = 128/dst_w_bpp */ 220 .if IS_END_OF_GROUP(SUBBLOCK,256/128*dst_w_bpp/bpp) 231 .macro preload_trailing bpp, bpp_shift, bas 263 .macro preload_line narrow_case, bpp, bpp_shift, base variable [all...] |
| pixman-bits-image.c | 949 int bpp; local 957 * So this line makes sure bpp is signed 959 bpp = PIXMAN_FORMAT_BPP (format); 975 row1 += bpp / 8 * x1; 988 row2 += bpp / 8 * x1; 1675 int bpp; local [all...] |
| pixman-fast-path.c | 1164 int bpp = PIXMAN_FORMAT_BPP (dest_image->bits.format) / 8; local 1165 uint32_t n_bytes = width * bpp; 1173 src = (uint8_t *)src_image->bits.bits + src_y * src_stride + src_x * bpp; 1174 dst = (uint8_t *)dest_image->bits.bits + dest_y * dst_stride + dest_x * bpp; [all...] |
| /external/qemu/distrib/sdl-1.2.15/src/video/ |
| SDL_RLEaccel.c | 111 #define PIXEL_COPY(to, from, len, bpp) \ 113 if(bpp == 4) { \ 116 SDL_memcpy(to, from, (size_t)(len) * (bpp)); \ 124 #define OPAQUE_BLIT(to, from, length, bpp, alpha) \ 125 PIXEL_COPY(to, from, length, bpp) 129 #define ALPHA_BLIT32_888MMX(to, from, length, bpp, alpha) \ 201 #define ALPHA_BLIT16_565MMX(to, from, length, bpp, alpha) \ 291 #define ALPHA_BLIT16_555MMX(to, from, length, bpp, alpha) \ 384 * For 32bpp pixels on the form 0x00rrggbb: 390 #define ALPHA_BLIT32_888(to, from, length, bpp, alpha) 1650 int bpp = surface->format->BytesPerPixel; local 1834 int bpp = df->BytesPerPixel; local [all...] |
| /external/qemu/distrib/sdl-1.2.15/src/video/gapi/ |
| SDL_gapivideo.c | 34 // TODO: optimize 8bpp landscape mode 88 extern int DIB_AddMode(_THIS, int bpp, int w, int h); 93 static SDL_Surface *GAPI_SetVideoMode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags); 206 static int GAPI_AddMode(_THIS, int bpp, int w, int h) 213 if ( bpp < 8 ) { /* Not supported */ 216 index = ((bpp+7)/8)-1; 455 /* unknown pixel format, try define by BPP! */ 527 int i,bpp; local 538 // SDL does not supports 2/4bpp mode, so use 16 bpp 1235 int bpp = 16; \/\/ we always use either 8 or 16 bpp internally local [all...] |
| /external/qemu/distrib/sdl-1.2.15/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
|
| /external/skia/src/images/ |
| SkImageDecoder_libwebp.cpp | 557 static ScanlineImporter ChooseImporter(SkColorType ct, bool hasAlpha, int* bpp) { 561 *bpp = 4; 564 *bpp = 3; 569 *bpp = 4; 572 *bpp = 3; 576 *bpp = 3; 579 *bpp = 3; 603 int bpp = -1; local 604 const ScanlineImporter scanline_import = ChooseImporter(bm.colorType(), hasAlpha, &bpp); 608 if (-1 == bpp) { [all...] |
| /hardware/libhardware/tests/camera2/ |
| camera2.cpp | 488 size_t bpp = 2; local 491 (const char *)(buffer.data + y * buffer.stride * bpp), 492 buffer.width * bpp); 795 size_t bpp = 1; local 798 (const char *)(buffer.data + y * buffer.stride * bpp), 799 buffer.width * bpp);
|
| /hardware/ti/omap4-aah/test/CameraHal/ |
| camera_test_surfacetexture.cpp | 92 unsigned int bpp; local 96 bpp = 1; 100 bpp = 2; 104 bpp = 1; 108 return top * width + left * bpp;
|
| /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/ |
| MultiTouchActivity.java | 284 final int bpp = bb.getInt(); local
|
| /external/chromium_org/third_party/libpng/ |
| pngwutil.c | 2150 png_uint_32 mins, bpp; local [all...] |
| /external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
| s_context.h | 464 const GLint bpp = _mesa_get_format_bytes(rb->Format); local 474 return (GLubyte *) srb->Map + y * rowStride + x * bpp;
|
| s_span.c | 1086 const GLuint bpp = _mesa_get_format_bytes(rb->Format); local [all...] |
| /external/chromium_org/third_party/skia/src/core/ |
| SkBitmap.cpp | 102 int bpp; local 105 bpp = 0; // not applicable 109 bpp = 1; 113 bpp = 2; 116 bpp = 4; 120 bpp = 0; // error 123 return bpp; [all...] |
| /external/libpng/ |
| pngwutil.c | 2326 png_uint_32 mins, bpp; local [all...] |
| /external/mesa3d/src/mesa/swrast/ |
| s_context.h | 464 const GLint bpp = _mesa_get_format_bytes(rb->Format); local 474 return (GLubyte *) srb->Map + y * rowStride + x * bpp;
|
| s_span.c | 1086 const GLuint bpp = _mesa_get_format_bytes(rb->Format); local [all...] |
| /external/pdfium/core/src/fpdfapi/fpdf_render/ |
| fpdf_render_text.cpp | 103 int bpp = pBitmap->GetBPP();
local 104 if (bpp > 8) {
105 width *= bpp / 8;
112 if (bpp == 1) {
|
| /external/pixman/test/ |
| utils.c | 249 int bpp = PIXMAN_FORMAT_BPP (pixman_image_get_format (img)); local 256 if (bpp == 8) 263 switch (bpp) 947 /* 32bpp formats */ 965 /* 24bpp formats */ 969 /* 16bpp formats */ 982 /* 8bpp formats */ 998 /* 4bpp formats */ 1008 /* 1bpp formats */ [all...] |
| /external/qemu/distrib/libpng-1.2.46/ |
| pngwutil.c | 2150 png_uint_32 mins, bpp; local [all...] |
| /external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/ |
| Xvproto.h | 115 CARD8 bpp; member in struct:__anon33184
|
| /external/qemu/distrib/sdl-1.2.15/src/video/windx5/ |
| SDL_dx5video.c | 424 static SDL_Surface *DX5_SetVideoMode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags); 672 int bpp = desc->ddpfPixelFormat.u1.dwRGBBitCount; local 675 int bpp = desc->ddpfPixelFormat.dwRGBBitCount; local 687 switch (bpp) { 692 bpp /= 8; --bpp; 693 if ( enumlists[bpp] && 694 enumlists[bpp]->r.w == (Uint16)desc->dwWidth && 695 enumlists[bpp]->r.h == (Uint16)desc->dwHeight ) { 696 if ( refreshRate > enumlists[bpp]->refreshRate & 1003 int bpp; local [all...] |
| /external/skia/src/core/ |
| SkBitmap.cpp | 102 int bpp; local 105 bpp = 0; // not applicable 109 bpp = 1; 113 bpp = 2; 116 bpp = 4; 120 bpp = 0; // error 123 return bpp; [all...] |
| /frameworks/native/libs/gui/ |
| Surface.cpp | 762 const size_t bpp = bytesPerPixel(src->format); local 763 const size_t dbpr = dst->stride * bpp; 764 const size_t sbpr = src->stride * bpp; 770 size_t size = r.width() * bpp; 771 uint8_t const * s = src_bits + (r.left + src->stride * r.top) * bpp; 772 uint8_t * d = dst_bits + (r.left + dst->stride * r.top) * bpp;
|
| /bionic/libc/kernel/uapi/drm/ |
| drm_mode.h | 281 __u32 bpp; member in struct:drm_mode_fb_cmd 371 uint32_t bpp; member in struct:drm_mode_create_dumb
|