HomeSort by relevance Sort by last modified time
    Searched defs:bitmap (Results 701 - 725 of 1117) sorted by null

<<21222324252627282930>>

  /external/chromium_org/net/disk_cache/blockfile/
disk_format_v3.h 22 // a possibl entry). The index bitmap tracks the state of individual cells.
98 uint32 bitmap[kBaseBitmapBytes / 4]; // First page of the bitmap. member in struct:disk_cache::IndexBitmap
  /external/chromium_org/skia/ext/
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/third_party/boringssl/src/include/openssl/
dtls1.h 190 DTLS1_BITMAP bitmap; member in struct:dtls1_state_st
  /external/chromium_org/third_party/freetype/src/sfnt/
ttsbit.c 5 /* TrueType and OpenType embedded bitmap support (body). */
168 FT_Bitmap* bitmap; member in struct:TT_SBitDecoderRec_
206 decoder->bitmap = &face->root.glyph->bitmap;
261 FT_Bitmap* map = decoder->bitmap;
409 FT_Bitmap* bitmap; local
414 /* check that we can write the glyph into the bitmap */
415 bitmap = decoder->bitmap;
416 bit_width = bitmap->width
550 FT_Bitmap* bitmap; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_context.h 160 } bitmap; member in struct:st_context
  /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/chromium_org/third_party/skia/src/images/
SkImageDecoder_libwebp.cpp 113 virtual bool onDecodeSubset(SkBitmap* bitmap, const SkIRect& rect) SK_OVERRIDE;
335 static bool is_config_compatible(const SkBitmap& bitmap) {
336 const SkColorType ct = bitmap.colorType();
356 // 2. bitmap's config is compatible
357 // 3. bitmap's size is same as the required region (after sampled)
365 SkBitmap *bitmap = decodedBitmap; local
368 bitmap = &tmpBitmap;
371 if (bitmap->isNull()) {
372 if (!setDecodeConfig(bitmap, width, height)) {
375 // alloc from native heap if it is a temp bitmap. (prevent GC
    [all...]
  /external/chromium_org/third_party/skia/src/utils/debugger/
SkDebugCanvas.cpp 73 SkBitmap bitmap; local
74 bitmap.allocPixels(SkImageInfo::MakeN32Premul(1, 1));
76 SkCanvas canvas(bitmap);
81 SkColor prev = bitmap.getColor(0,0);
86 if (prev != bitmap.getColor(0,0)) {
89 prev = bitmap.getColor(0,0);
462 void SkDebugCanvas::drawBitmap(const SkBitmap& bitmap, SkScalar left,
464 this->addDrawCommand(new SkDrawBitmapCommand(bitmap, left, top, paint));
467 void SkDebugCanvas::drawBitmapRectToRect(const SkBitmap& bitmap,
471 this->addDrawCommand(new SkDrawBitmapRectCommand(bitmap, src, dst, paint, flags))
    [all...]
  /external/chromium_org/third_party/skia/src/views/win/
SkOSWindow_win.cpp 185 const SkBitmap& bitmap = this->getBitmap(); local
190 bmi.bmiHeader.biWidth = bitmap.width();
191 bmi.bmiHeader.biHeight = -bitmap.height(); // top-down image
204 // seems to be to copy the bitmap to a temporary (contiguous)
206 SkASSERT(bitmap.width() * bitmap.bytesPerPixel() == bitmap.rowBytes());
207 bitmap.lockPixels();
210 bitmap.width(), bitmap.height()
    [all...]
  /external/chromium_org/third_party/skia/tests/
BlurTest.cpp 267 SkBitmap bitmap; local
268 bitmap.allocN32Pixels(resultCount, 30);
269 SkCanvas canvas(bitmap);
ImageFilterTest.cpp 89 static void make_small_bitmap(SkBitmap& bitmap) {
90 bitmap.allocN32Pixels(kBitmapSize, kBitmapSize);
91 SkCanvas canvas(bitmap);
202 SkBitmap bitmap, result; local
203 make_small_bitmap(bitmap);
215 SkAutoTUnref<SkImageFilter> bmSrc(SkBitmapSource::Create(bitmap));
233 SkBitmap bitmap; local
234 bitmap.allocN32Pixels(100, 100);
235 bitmap.eraseARGB(0, 0, 0, 0);
279 REPORTER_ASSERT_MESSAGE(reporter, filter->filterImage(&proxy, bitmap, ctx
290 SkBitmap bitmap; local
766 SkBitmap bitmap; local
815 SkBitmap bitmap; local
826 SkBitmap bitmap; local
879 SkBitmap bitmap; local
956 SkBitmap bitmap; local
1005 SkBitmap bitmap; local
    [all...]
  /external/chromium_org/third_party/skia/tools/
skimage_main.cpp 127 * Encode the bitmap to a file, written one of two ways, depending on
168 // First attempt at encoding failed, and the bitmap was already 8888. Making
236 * If expectations are to be recorded, record the bitmap expectations into the global
254 * If --readExpectationsPath is set, compare this bitmap to the json expectations
257 * @param digest GmResultDigest, computed from the decoded bitmap, to compare to
269 * - the bitmap matches the expectation.
272 * - there is an expectations file, but no expectation for this bitmap.
273 * - there is an expectation for this bitmap, but it did not match.
274 * - expectation could not be computed from the bitmap.
323 * Helper function to write a bitmap subset to a file. Only called if subsets were create
485 SkBitmap bitmap; local
    [all...]
  /external/chromium_org/ui/base/resource/
resource_bundle.cc 117 // ResourceBundle on demand for a given |resource_id|. If the bitmap for the
118 // requested scale factor does not exist, it will return the 1x bitmap scaled
762 SkBitmap* bitmap,
770 if (DecodePNG(memory->front(), memory->size(), bitmap, fell_back_to_1x))
779 bitmap->swap(*jpeg_bitmap.get());
791 SkBitmap* bitmap,
796 LoadBitmap(*data_packs_[i], resource_id, bitmap, fell_back_to_1x)) {
802 LoadBitmap(*data_packs_[i], resource_id, bitmap, fell_back_to_1x)) {
813 // The placeholder bitmap is bright red so people notice the problem.
814 SkBitmap bitmap; local
    [all...]
  /external/chromium_org/ui/gfx/codec/
png_codec.cc 85 bitmap(NULL),
97 bitmap(skbitmap),
109 SkBitmap* bitmap; member in class:gfx::__anon519::PngDecoderState
273 if (state->bitmap) {
274 state->bitmap->allocN32Pixels(state->width, state->height);
295 if (state->bitmap)
296 base = reinterpret_cast<unsigned char*>(state->bitmap->getAddr32(0, 0));
432 SkBitmap* bitmap) {
433 DCHECK(bitmap);
447 PngDecoderState state(bitmap);
    [all...]
  /external/chromium_org/ui/gfx/image/
image.cc 60 SkBitmap bitmap; local
61 bitmap.allocN32Pixels(16, 16);
62 bitmap.eraseARGB(0xff, 0xff, 0, 0);
63 return new ImageSkia(ImageSkiaRep(bitmap, 1.0f));
110 SkBitmap bitmap; local
112 &bitmap)) {
116 return ImageSkiaRep(bitmap, png_rep.scale);
476 Image Image::CreateFrom1xBitmap(const SkBitmap& bitmap) {
477 return Image(ImageSkia::CreateFrom1xBitmap(bitmap));
504 return ToImageSkia()->bitmap();
    [all...]
image_skia_operations.cc 40 SkBitmap bitmap; local
41 bitmap.allocN32Pixels(pixel_size.width(), pixel_size.height());
42 bitmap.eraseColor(SK_ColorRED);
43 return gfx::ImageSkiaRep(bitmap, scale);
  /external/chromium_org/ui/message_center/views/
notification_view.cc 85 // Determine which bitmap to use.
90 // Extract that bitmap's alpha and look for a non-opaque pixel there.
91 SkBitmap bitmap = image.GetRepresentation(factor).sk_bitmap(); local
92 if (!bitmap.isNull()) {
94 bitmap.extractAlpha(&alpha);
95 for (int y = 0; y < bitmap.height(); ++y) {
96 for (int x = 0; x < bitmap.width(); ++x) {
104 // If no opaque pixel was found, return false unless the bitmap is empty.
105 return bitmap.isNull();
  /external/freetype/src/sfnt/
ttsbit.c 5 /* TrueType and OpenType embedded bitmap support (body). */
315 FT_Bitmap* bitmap; member in struct:TT_SBitDecoderRec_
353 decoder->bitmap = &face->root.glyph->bitmap;
407 FT_Bitmap* map = decoder->bitmap;
543 FT_Bitmap* bitmap; local
546 /* check that we can write the glyph into the bitmap */
547 bitmap = decoder->bitmap;
548 bit_width = bitmap->width
681 FT_Bitmap* bitmap; local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_context.h 160 } bitmap; member in struct:st_context
  /external/openssl/include/openssl/
dtls1.h 200 DTLS1_BITMAP bitmap; member in struct:dtls1_state_st
  /external/openssl/ssl/
dtls1.h 200 DTLS1_BITMAP bitmap; member in struct:dtls1_state_st
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/sfnt/
ttsbit.c 5 /* TrueType and OpenType embedded bitmap support (body). */
168 FT_Bitmap* bitmap; member in struct:TT_SBitDecoderRec_
206 decoder->bitmap = &face->root.glyph->bitmap;
261 FT_Bitmap* map = decoder->bitmap;
409 FT_Bitmap* bitmap; local
414 /* check that we can write the glyph into the bitmap */
415 bitmap = decoder->bitmap;
416 bit_width = bitmap->width
550 FT_Bitmap* bitmap; local
    [all...]
  /external/qemu/
kvm-all.c 303 * kvm_physical_sync_dirty_bitmap - Grab dirty bitmap from kernel space
304 * This function updates qemu's dirty bitmap using cpu_physical_memory_set_dirty().
348 unsigned long *bitmap = (unsigned long *)d.dirty_bitmap; local
350 unsigned word = nr / (sizeof(*bitmap) * 8);
351 unsigned bit = nr % (sizeof(*bitmap) * 8);
353 if ((bitmap[word] >> bit) & 1) {
  /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...]
  /external/skia/src/effects/gradients/
SkGradientShader.cpp 575 * over and over, we'd like to return exactly the same "bitmap" if possible,
576 * allowing the client to utilize a cache of our bitmap (e.g. with a GPU).
581 void SkGradientShaderBase::getGradientTableBitmap(SkBitmap* bitmap) const {
610 // each cache cost 1K of RAM, since each bitmap will be 1x256 at 32bpp
619 if (!gCache->find(storage.get(), size, bitmap)) {
622 bitmap->setInfo(SkImageInfo::MakeN32Premul(kCache32Count, 1));
623 bitmap->setPixelRef(cache->getCache32PixelRef());
625 gCache->add(storage.get(), size, *bitmap);
1049 SkBitmap bitmap; local
    [all...]

Completed in 1195 milliseconds

<<21222324252627282930>>