HomeSort by relevance Sort by last modified time
    Searched refs:BITMAP (Results 1 - 25 of 36) sorted by null

1 2

  /external/chromium/chrome/browser/
icon_loader_win.cc 37 BITMAP bitmap_info = { 0 };
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
sbitmap.h 24 /* It's not clear yet whether using bitmap.[ch] will be a win.
49 #define SBITMAP_SIZE_BYTES(BITMAP) ((BITMAP)->size * sizeof (SBITMAP_ELT_TYPE))
51 /* Test if bit number bitno in the bitmap is set. */
52 #define TEST_BIT(BITMAP, BITNO) \
53 ((BITMAP)->elms [(BITNO) / SBITMAP_ELT_BITS] >> (BITNO) % SBITMAP_ELT_BITS & 1)
56 if this bitmap has one. */
75 count if this bitmap has one. */
93 /* The pointer to the first word of the bitmap. */
96 /* The size of the bitmap. *
    [all...]
bitmap.h 27 /* Fundamental storage type for bitmap. */
40 /* Number of bits in each actual element of a bitmap. */
51 /* Bitmap set element. We use a linked list to hold only the bits that
71 /* Head of bitmap linked list. gengtype ignores ifdefs, but for
72 statistics we need to add a bitmap descriptor pointer. As it is
87 extern bitmap_element bitmap_zero_bits; /* Zero bitmap element */
88 extern bitmap_obstack bitmap_default_obstack; /* Default bitmap obstack */
90 /* Clear a bitmap by freeing up the linked list. */
91 extern void bitmap_clear (bitmap);
93 /* Copy a bitmap to another bitmap. *
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
sbitmap.h 24 /* It's not clear yet whether using bitmap.[ch] will be a win.
49 #define SBITMAP_SIZE_BYTES(BITMAP) ((BITMAP)->size * sizeof (SBITMAP_ELT_TYPE))
51 /* Test if bit number bitno in the bitmap is set. */
52 #define TEST_BIT(BITMAP, BITNO) \
53 ((BITMAP)->elms [(BITNO) / SBITMAP_ELT_BITS] >> (BITNO) % SBITMAP_ELT_BITS & 1)
56 if this bitmap has one. */
75 count if this bitmap has one. */
93 /* The pointer to the first word of the bitmap. */
96 /* The size of the bitmap. *
    [all...]
bitmap.h 27 /* Fundamental storage type for bitmap. */
40 /* Number of bits in each actual element of a bitmap. */
51 /* Bitmap set element. We use a linked list to hold only the bits that
71 /* Head of bitmap linked list. gengtype ignores ifdefs, but for
72 statistics we need to add a bitmap descriptor pointer. As it is
87 extern bitmap_element bitmap_zero_bits; /* Zero bitmap element */
88 extern bitmap_obstack bitmap_default_obstack; /* Default bitmap obstack */
90 /* Clear a bitmap by freeing up the linked list. */
91 extern void bitmap_clear (bitmap);
93 /* Copy a bitmap to another bitmap. *
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
sbitmap.h 24 /* It's not clear yet whether using bitmap.[ch] will be a win.
49 #define SBITMAP_SIZE_BYTES(BITMAP) ((BITMAP)->size * sizeof (SBITMAP_ELT_TYPE))
51 /* Test if bit number bitno in the bitmap is set. */
52 #define TEST_BIT(BITMAP, BITNO) \
53 ((BITMAP)->elms [(BITNO) / SBITMAP_ELT_BITS] >> (BITNO) % SBITMAP_ELT_BITS & 1)
56 if this bitmap has one. */
75 count if this bitmap has one. */
93 /* The pointer to the first word of the bitmap. */
96 /* The size of the bitmap. *
    [all...]
bitmap.h 27 /* Fundamental storage type for bitmap. */
40 /* Number of bits in each actual element of a bitmap. */
51 /* Bitmap set element. We use a linked list to hold only the bits that
71 /* Head of bitmap linked list. gengtype ignores ifdefs, but for
72 statistics we need to add a bitmap descriptor pointer. As it is
87 extern bitmap_element bitmap_zero_bits; /* Zero bitmap element */
88 extern bitmap_obstack bitmap_default_obstack; /* Default bitmap obstack */
90 /* Clear a bitmap by freeing up the linked list. */
91 extern void bitmap_clear (bitmap);
93 /* Copy a bitmap to another bitmap. *
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
sbitmap.h 24 /* It's not clear yet whether using bitmap.[ch] will be a win.
49 #define SBITMAP_SIZE_BYTES(BITMAP) ((BITMAP)->size * sizeof (SBITMAP_ELT_TYPE))
51 /* Test if bit number bitno in the bitmap is set. */
52 #define TEST_BIT(BITMAP, BITNO) \
53 ((BITMAP)->elms [(BITNO) / SBITMAP_ELT_BITS] >> (BITNO) % SBITMAP_ELT_BITS & 1)
56 if this bitmap has one. */
75 count if this bitmap has one. */
93 /* The pointer to the first word of the bitmap. */
96 /* The size of the bitmap. *
    [all...]
bitmap.h 27 /* Fundamental storage type for bitmap. */
40 /* Number of bits in each actual element of a bitmap. */
51 /* Bitmap set element. We use a linked list to hold only the bits that
71 /* Head of bitmap linked list. gengtype ignores ifdefs, but for
72 statistics we need to add a bitmap descriptor pointer. As it is
87 extern bitmap_element bitmap_zero_bits; /* Zero bitmap element */
88 extern bitmap_obstack bitmap_default_obstack; /* Default bitmap obstack */
90 /* Clear a bitmap by freeing up the linked list. */
91 extern void bitmap_clear (bitmap);
93 /* Copy a bitmap to another bitmap. *
    [all...]
  /external/chromium_org/skia/ext/
bitmap_platform_device_win.cc 38 // CreateDIBSection appears to get unhappy if we create an empty bitmap, so
39 // just create a minimal bitmap
48 hdr.biHeight = -height; // minus means top-down bitmap
95 // Initialize the clip region to the entire bitmap.
96 BITMAP bitmap_data;
97 if (GetObject(bitmap_context_, sizeof(BITMAP), &bitmap_data)) {
108 // this will free the bitmap data as well as the bitmap handle
119 // own bitmap, we must delete the previous one.
173 SkBitmap bitmap;
    [all...]
vector_canvas_unittest.cc 49 class Bitmap {
51 Bitmap(const Context& context, int x, int y) {
55 hdr.biHeight = -y; // Minus means top-down bitmap.
70 ~Bitmap() {
79 DISALLOW_COPY_AND_ASSIGN(Bitmap);
82 // Lightweight raw-bitmap management. The image, once initialized, is immuable.
92 SkBitmap bitmap; local
95 compressed.size(), &bitmap)); local
96 SetSkBitmap(bitmap);
101 // Use a different way to access the bitmap. The normal way would be t
105 HGDIOBJ bitmap = GetCurrentObject(context, OBJ_BITMAP); local
344 compressed.size(), bitmap)); local
804 SkBitmap bitmap; local
812 SkBitmap bitmap; local
821 SkBitmap bitmap; local
838 SkBitmap bitmap; local
852 SkBitmap bitmap; local
874 SkBitmap bitmap; local
896 SkBitmap bitmap; local
924 SkBitmap bitmap; local
    [all...]
vector_platform_device_emf_win.cc 34 // playing back the device into a bitmap, do it at the printer's dpi instead
57 hdr->biHeight = -height; // Minus means top-down bitmap.
71 // Link the SkBitmap to the current selected bitmap in the device context.
72 SkBitmap bitmap; local
76 BITMAP bitmap_data;
77 if (GetObject(selected_bitmap, sizeof(BITMAP), &bitmap_data) ==
78 sizeof(BITMAP)) {
79 // The context has a bitmap attached. Attach our SkBitmap to it.
80 // Warning: If the bitmap gets unselected from the HDC,
86 bitmap.setConfig(SkBitmap::kARGB_8888_Config
    [all...]
  /external/chromium_org/ui/base/clipboard/
clipboard_aura.cc 34 BITMAP = 1 << 4,
98 format_ |= BITMAP;
139 // Bitmap images.
253 if (!HasFormat(BITMAP))
258 uint8_t* bitmap = data->bitmap_data(); local
262 memcpy(img.getPixels(), bitmap, size.width() * size.height() * 4);
478 return clipboard->IsFormatAvailable(BITMAP);
  /frameworks/base/libs/hwui/font/
Font.h 104 BITMAP,
111 int numGlyphs, int x, int y, RenderMode mode, uint8_t *bitmap,
124 uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH,
127 uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH,
130 uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH,
133 uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH,
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglWindowsApi.cpp 344 EGLint window,bitmap,pbuffer,transparent; local
365 IS_TRUE(s_wglExtProcs->wglGetPixelFormatAttribivARB(dpy,index,0,1,&attribs[1],&bitmap));
368 if(bitmap) supportedSurfaces |= EGL_PIXMAP_BIT;
443 BITMAP bm;
445 return GetObject(pix->getBmap(), sizeof(BITMAP), (LPSTR)&bm);
462 BITMAP bm;
463 if(!GetObject(pix, sizeof(BITMAP), (LPSTR)&bm)) return false;
  /external/chromium_org/third_party/openssl/openssl/crypto/rand/
rand_win.c 743 HBITMAP hBitmap; /* handle for our bitmap */
744 HBITMAP hOldBitmap; /* handle for previous bitmap */
745 BITMAP bm; /* bitmap properties */
746 unsigned int size; /* size of bitmap */
747 char *bmbits; /* contents of bitmap */
764 /* Create a bitmap compatible with the screen DC */
767 /* Select new bitmap into memory DC */
770 /* Get bitmap properties */
771 GetObject(hBitmap, sizeof(BITMAP), (LPSTR)&bm)
    [all...]
  /external/openssl/crypto/rand/
rand_win.c 743 HBITMAP hBitmap; /* handle for our bitmap */
744 HBITMAP hOldBitmap; /* handle for previous bitmap */
745 BITMAP bm; /* bitmap properties */
746 unsigned int size; /* size of bitmap */
747 char *bmbits; /* contents of bitmap */
764 /* Create a bitmap compatible with the screen DC */
767 /* Select new bitmap into memory DC */
770 /* Get bitmap properties */
771 GetObject(hBitmap, sizeof(BITMAP), (LPSTR)&bm)
    [all...]
  /frameworks/rs/
rsFont.h 48 BITMAP,
88 uint8_t *bitmap = NULL, uint32_t bitmapW = 0, uint32_t bitmapH = 0);
95 // Location of the cached glyph in the bitmap
110 // Values below contain a glyph's origin in the bitmap
135 uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH);
152 uint8_t *bitmap = NULL, uint32_t bitmapW = 0, uint32_t bitmapH = 0);
178 bool fitBitmap(FT_Bitmap_ *bitmap, uint32_t *retOriginX, uint32_t *retOriginY);
224 bool cacheBitmap(FT_Bitmap_ *bitmap, uint32_t *retOriginX, uint32_t *retOriginY);
  /external/qemu/android/camera/
camera-capture-windows.c 60 /* DC for frame bitmap manipulation. Null indicates that frames are not
63 /* Bitmap info for the frames obtained from the video capture driver. */
65 /* Bitmap info to use for GetDIBits calls. We can't really use bitmap info
69 * which causes GetDIBits to fail. Second, the bitmap that represents a frame
71 * bitmap info that capture driver has returned. Sometimes the captured bitmap
73 * address these issues we need to have another bitmap info, that can be used
82 /* If != 0, frame bitmap is "top-down". If 0, frame bitmap is "bottom-up". *
295 BITMAP bitmap; local
    [all...]
  /external/chromium_org/tools/grit/grit/tool/
rc2grd.py 269 '''Scans 'rctext' for included resources (e.g. BITMAP, ICON) and
  /frameworks/base/core/java/android/widget/
RemoteViews.java 28 import android.graphics.Bitmap;
105 * Maps bitmaps to unique indicies to avoid Bitmap duplication.
254 // We currently only calculate Bitmap memory usage, so by default,
286 // reference the bitmap cache. We don't want to modify the object as it may need to
319 // Because pruning can remove the need for bitmaps, we reconstruct the bitmap cache
1007 Bitmap bitmap; field in class:RemoteViews.BitmapReflectionAction
    [all...]
  /external/chromium_org/ui/gfx/
icon_util.cc 117 SkBitmap bitmap = image.AsBitmap(); local
119 // Only 32 bit ARGB bitmaps are supported. We also make sure the bitmap has
121 SkAutoLockPixels bitmap_lock(bitmap);
122 if ((bitmap.config() != SkBitmap::kARGB_8888_Config) ||
123 (bitmap.getPixels() == NULL)) {
132 bitmaps->push_back(bitmap);
165 HICON IconUtil::CreateHICONFromSkBitmap(const SkBitmap& bitmap) {
167 // validations as we can on the bitmap.
168 SkAutoLockPixels bitmap_lock(bitmap);
169 if ((bitmap.config() != SkBitmap::kARGB_8888_Config) |
374 SkBitmap bitmap; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
nv50_formats.c 331 F1B(R1_UNORM, BITMAP, C0, xx, xx, xx, UNORM, BITMAP, T),
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_formats.c 331 F1B(R1_UNORM, BITMAP, C0, xx, xx, xx, UNORM, BITMAP, T),
  /frameworks/base/libs/hwui/
FontRenderer.cpp 222 // If the glyph bitmap is empty let's assum the glyph is valid
258 // Now copy the bitmap into the cache texture
645 Font::BITMAP, dataBuffer, paddedWidth, paddedHeight, NULL, positions);

Completed in 2403 milliseconds

1 2