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

1 2

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
sbitmap.h 23 /* Implementation of sets using simple bitmap vectors.
68 Allocating a bitmap is done with sbitmap_alloc, and resizing is
71 The storage requirements for simple bitmap sets is O(U) where U is the
72 size of the set universe (colloquially the number of bits in the bitmap).
77 so that even sparse simple bitmap sets outperform dedicated sparse set
79 overhead of simple bitmap sets gets too high and other set representations
96 /* Return the number of bits in BITMAP. */
97 #define SBITMAP_SIZE(BITMAP) ((BITMAP)->n_bits)
99 /* Test if bit number bitno in the bitmap is set. *
    [all...]
bitmap.h 111 SparseSet or simple bitmap representations may be more efficient than a
134 /* Fundamental storage type for bitmap. */
147 /* Number of bits in each actual element of a bitmap. */
158 /* Bitmap set element. We use a linked list to hold only the bits that
177 /* Head of bitmap linked list. The 'current' member points to something
183 site of this bitmap, for detailed
192 extern bitmap_element bitmap_zero_bits; /* Zero bitmap element */
193 extern bitmap_obstack bitmap_default_obstack; /* Default bitmap obstack */
195 /* Clear a bitmap by freeing up the linked list. */
196 extern void bitmap_clear (bitmap);
    [all...]
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/win/
cursor_unittest.cc 56 BITMAP bitmap_info;
cursor.cc 96 // Scans a 32bpp bitmap looking for any pixels with non-zero alpha component.
131 BITMAP bitmap_info;
133 LOG_F(LS_ERROR) << "Unable to get bitmap info. Error = "
147 bmi.bV5Height = -height; // request a top-down bitmap.
161 LOG_F(LS_ERROR) << "Unable to get bitmap bits. Error = "
173 // Get the pixels from the color bitmap.
181 LOG_F(LS_ERROR) << "Unable to get bitmap bits. Error = "
186 // GetDIBits() does not provide any indication whether the bitmap has alpha
198 // The XOR mask becomes the color bitmap.
  /external/chromium_org/skia/ext/
bitmap_platform_device_win.cc 21 // CreateDIBSection appears to get unhappy if we create an empty bitmap, so
22 // just create a minimal bitmap
31 hdr.biHeight = -height; // minus means top-down bitmap
105 static bool InstallHBitmapPixels(SkBitmap* bitmap, int width, int height,
111 return bitmap->installPixels(info, data, rowBytes, color_table,
131 SkBitmap bitmap;
132 if (!InstallHBitmapPixels(&bitmap, width, height, is_opaque, data, hbitmap))
140 bitmap.eraseARGB(255, 0, 255, 128); // bright bluish green
145 return new BitmapPlatformDevice(hbitmap, bitmap);
166 // data. Therefore, we do not transfer ownership to the SkBitmapDevice's 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
343 compressed.size(), bitmap)); local
803 SkBitmap bitmap; local
811 SkBitmap bitmap; local
820 SkBitmap bitmap; local
837 SkBitmap bitmap; local
851 SkBitmap bitmap; local
873 SkBitmap bitmap; local
895 SkBitmap bitmap; local
923 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 = {0};
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 succeeded = bitmap.installPixels(info, bitmap_data.bmBits
    [all...]
  /external/chromium_org/ui/base/clipboard/
clipboard_aura.cc 34 BITMAP = 1 << 4,
88 const SkBitmap& bitmap() const { return bitmap_; } function in class:ui::__anon322::ClipboardData
89 void SetBitmapData(const SkBitmap& bitmap) {
90 bitmap.copyTo(&bitmap_);
91 format_ |= BITMAP;
132 // Bitmap images.
246 if (!HasFormat(BITMAP))
250 const SkBitmap& clipboard_bitmap = GetData()->bitmap();
383 static void WriteBitmap(const SkBitmap& bitmap) {
385 data->SetBitmapData(bitmap);
    [all...]
  /frameworks/base/libs/hwui/font/
Font.h 109 BITMAP,
116 int numGlyphs, int x, int y, RenderMode mode, uint8_t *bitmap,
129 uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH,
132 uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH,
135 uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH,
138 uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH,
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglWindowsApi.cpp 342 EGLint window,bitmap,pbuffer,transparent; local
363 IS_TRUE(s_wglExtProcs->wglGetPixelFormatAttribivARB(dpy,index,0,1,&attribs[1],&bitmap));
366 if(bitmap) supportedSurfaces |= EGL_PIXMAP_BIT;
441 BITMAP bm;
443 return GetObject(pix->getBmap(), sizeof(BITMAP), (LPSTR)&bm);
460 BITMAP bm;
461 if(!GetObject(pix, sizeof(BITMAP), (LPSTR)&bm)) return false;
  /external/chromium_org/third_party/skia/samplecode/
SampleFilterFuzz.cpp 151 static void rand_bitmap_for_canvas(SkBitmap* bitmap) {
156 } while (!valid_for_raster_canvas(info) || !bitmap->tryAllocPixels(info));
159 static void make_g_bitmap(SkBitmap& bitmap) {
160 rand_bitmap_for_canvas(&bitmap);
162 SkCanvas canvas(bitmap);
173 static void make_checkerboard_bitmap(SkBitmap& bitmap) {
174 rand_bitmap_for_canvas(&bitmap);
176 SkCanvas canvas(bitmap);
198 static SkBitmap bitmap[2]; local
201 make_g_bitmap(bitmap[0])
    [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...]
  /external/skia/samplecode/
SampleFilterFuzz.cpp 153 static void rand_bitmap_for_canvas(SkBitmap* bitmap) {
158 } while (!valid_for_raster_canvas(info) || !bitmap->allocPixels(info));
161 static void make_g_bitmap(SkBitmap& bitmap) {
162 rand_bitmap_for_canvas(&bitmap);
164 SkCanvas canvas(bitmap);
175 static void make_checkerboard_bitmap(SkBitmap& bitmap) {
176 rand_bitmap_for_canvas(&bitmap);
178 SkCanvas canvas(bitmap);
200 static SkBitmap bitmap[2]; local
203 make_g_bitmap(bitmap[0])
    [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);
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/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);
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/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);
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/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
  /external/pdfium/core/src/fxge/win32/
fx_win32_dib.cpp 117 BITMAP bmp;
fx_win32_dwrite.cpp 436 BITMAP bitmap; local
437 GetObject(hBitmap, sizeof bitmap, &bitmap);
440 bitmap.bmWidth,
441 bitmap.bmHeight,
442 bitmap.bmBitsPixel == 24 ? FXDIB_Rgb : FXDIB_Rgb32,
443 (FX_LPBYTE)bitmap.bmBits
  /frameworks/base/core/java/android/widget/
RemoteViews.java 33 import android.graphics.Bitmap;
104 * Maps bitmaps to unique indicies to avoid Bitmap duplication.
253 // We currently only calculate Bitmap memory usage, so by default,
285 // reference the bitmap cache. We don't want to modify the object as it may need to
318 // Because pruning can remove the need for bitmaps, we reconstruct the bitmap cache
1006 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.colorType() != kN32_SkColorType) ||
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.colorType() != kN32_SkColorType) |
378 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),

Completed in 1189 milliseconds

1 2