| /external/chromium_org/pdf/pdfium/ |
| pdfium_engine.h | 592 FPDF_BITMAP bitmap; member in struct:chrome_pdf::PDFiumEngine::ProgressivePaint 607 // Shadow matrix for generating the page shadow bitmap.
|
| /external/chromium_org/ppapi/proxy/ |
| ppb_image_data_proxy.cc | 394 const SkBitmap& bitmap = local 397 bitmap.lockPixels(); 398 return bitmap.getAddr(0, 0);
|
| /external/chromium_org/printing/ |
| emf_win.cc | 48 // Play this command to the bitmap DC. 57 // EMRALPHABLEND is rendered into bitmap and metafile contexts with 99 NOTREACHED() << "Bitmap DC creation failed"; 110 NOTREACHED() << "Raster bitmap creation for printing failed"; 353 scoped_ptr<SkBitmap> bitmap; local 358 bitmap.reset(gfx::JPEGCodec::Decode(bits, bmih->biSizeImage)); 364 bitmap.reset(new SkBitmap()); 365 gfx::PNGCodec::Decode(bits, bmih->biSizeImage, bitmap.get()); 369 DCHECK(bitmap.get()); 370 if (bitmap.get()) [all...] |
| /external/chromium_org/skia/ext/ |
| 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...] |
| /external/chromium_org/third_party/boringssl/src/ssl/ |
| d1_pkt.c | 169 static int dtls1_record_replay_check(SSL *s, DTLS1_BITMAP *bitmap); 170 static void dtls1_record_bitmap_update(SSL *s, DTLS1_BITMAP *bitmap); 508 dtls1_record_bitmap_update(s, &(s->d1->bitmap));/* Mark receipt of record. */ 534 DTLS1_BITMAP *bitmap; local 639 bitmap = dtls1_get_bitmap(s, rr, &is_next_epoch); 640 if ( bitmap == NULL) 655 !dtls1_record_replay_check(s, bitmap)) [all...] |
| /external/chromium_org/third_party/freetype/src/sfnt/ |
| ttsbit0.c | 5 /* TrueType and OpenType embedded bitmap support (body). */ 164 FT_Bitmap* bitmap; member in struct:TT_SBitDecoderRec_ 200 decoder->bitmap = &face->root.glyph->bitmap; 254 FT_Bitmap* map = decoder->bitmap; 379 FT_Bitmap* bitmap; local 389 /* check that we can write the glyph into the bitmap */ 390 bitmap = decoder->bitmap; 391 bit_width = bitmap->width 517 FT_Bitmap* bitmap; local [all...] |
| /external/chromium_org/third_party/skia/src/core/ |
| SkPicturePlayback.cpp | 65 static SkBitmap shallow_copy(const SkBitmap& bitmap) { 66 return bitmap; 247 const SkBitmap bitmap = shallow_copy(fPictureData->getBitmap(reader)); local 249 canvas->drawBitmap(bitmap, loc.fX, loc.fY, paint); 253 const SkBitmap bitmap = shallow_copy(fPictureData->getBitmap(reader)); local 258 canvas->drawBitmapRectToRect(bitmap, src, dst, paint, flags); 262 const SkBitmap bitmap = shallow_copy(fPictureData->getBitmap(reader)); local 265 canvas->drawBitmapMatrix(bitmap, matrix, paint); 269 const SkBitmap bitmap = shallow_copy(fPictureData->getBitmap(reader)); local 272 canvas->drawBitmapNine(bitmap, src, dst, paint) 408 const SkBitmap bitmap = shallow_copy(fPictureData->getBitmap(reader)); local [all...] |
| /external/chromium_org/third_party/skia/src/effects/ |
| SkTableColorFilter.cpp | 436 SkBitmap bitmap; local 438 this->asComponentTable(&bitmap); 440 GrTexture* texture = GrLockAndRefCachedBitmapTexture(context, bitmap, NULL);
|
| /external/chromium_org/third_party/skia/src/gpu/ |
| SkGr.cpp | 27 based bitmap. [palette (colortable) + indices]. 37 static void build_compressed_data(void* buffer, const SkBitmap& bitmap) { 38 SkASSERT(kIndex_8_SkColorType == bitmap.colorType()); 40 SkAutoLockPixels alp(bitmap); 41 if (!bitmap.readyToDraw()) { 42 SkDEBUGFAIL("bitmap not ready to draw!"); 46 SkColorTable* ctable = bitmap.getColorTable(); 70 if ((unsigned)bitmap.width() == bitmap.rowBytes()) { 71 memcpy(dst, bitmap.getPixels(), bitmap.getSize()) 298 const SkBitmap* bitmap = &origBitmap; local [all...] |
| /external/chromium_org/third_party/skia/src/ports/ |
| SkImageDecoder_WIC.cpp | 180 //Get the size of the bitmap. 187 //Exit early if we're only looking for the bitmap bounds. 213 piBitmapSourceOriginal.get() //Input bitmap to convert 230 //Copy the pixels into the bitmap. 307 const SkBitmap* bitmap; local 310 bitmap = &bitmapOrig; 315 bitmap = &bitmapCopy; 319 if (!bitmap->isOpaque()) { 320 SkAutoLockPixels alp(*bitmap); 322 uint8_t* pixels = reinterpret_cast<uint8_t*>(bitmap->getPixels()) [all...] |
| /external/chromium_org/third_party/skia/tests/ |
| AAClipTest.cpp | 78 SkBitmap bitmap; local 79 bitmap.installPixels(info, mask->fImage, mask->fRowBytes); 87 SkCanvas canvas(bitmap);
|
| DeferredCanvasTest.cpp | 42 SkBitmap bitmap; local 43 bitmap.installPixels(SkImageInfo::MakeN32Premul(1, 1), &pixel, 4); 44 SkCanvas canvas(bitmap); 95 // Tests below depend on this bitmap being recognized as opaque 514 // stored bitmap + drawBitmap command 531 // Verify that caching works for avoiding multiple copies of the same bitmap 558 // only one bitmap should have been freed. 593 // This test covers a code path that inserts bitmaps into the bitmap heap through the 594 // flattening of SkBitmapProcShaders. The refcount in the bitmap heap is maintained through 614 // the bitmap heap slots fill up. In the second pass memory allocation should b [all...] |
| ImageDecodingTest.cpp | 129 // "c0" is the color of the premultiplied bitmap at (i, j). 132 // bitmap at (i, j). 327 // Create a stream containing a bitmap encoded to Type type. 401 // expected output for 8x8 bitmap 487 static SkPixelRef* install_pixel_ref(SkBitmap* bitmap, 490 SkASSERT(bitmap != NULL); 494 SkColorType colorType = bitmap->colorType(); 497 SkDecodingImageGenerator::Create(stream, opts), bitmap)) { 498 return bitmap->pixelRef(); 661 * client of the generator set sample size, dithering, and bitmap 735 SkBitmap bitmap; local 813 SkBitmap bitmap; local [all...] |
| SurfaceTest.cpp | 107 SkBitmap bitmap; local 108 bitmap.installPixels(info, addr, rowBytes); 110 SkImageEncoder::EncodeData(bitmap, SkImageEncoder::kPNG_Type,
|
| /external/chromium_org/third_party/skia/tools/ |
| PictureRenderer.cpp | 128 SkBitmap bitmap; local 129 sk_tools::setup_bitmap(&bitmap, width, height); 130 canvas = SkNEW_ARGS(SkCanvas, (bitmap)); 286 SkBitmap bitmap; local 288 setup_bitmap(&bitmap, size.width(), size.height()); 290 canvas->readPixels(&bitmap, 0, 0); 291 force_all_opaque(bitmap); 292 BitmapAndDigest bitmapAndDigest(bitmap); 332 if (!write_bitmap_to_disk(bitmap, mismatchPath, outputSubdirPtr, outputFilename)) { 341 return write_bitmap_to_disk(bitmap, writePath, outputSubdirPtr, outputFilename) 652 SkBitmap bitmap; local [all...] |
| /external/chromium_org/tools/site_compare/ |
| site_compare.py | 31 import commands.scrape # scrape a URL or series of URLs to a bitmap namespace
|
| /external/chromium_org/ui/gfx/ |
| canvas.cc | 123 // Make a bitmap to return, and a canvas to draw into it. We don't just want 125 // of the bitmap. 137 // Create a 2D bitmap containing alternating on/off pixels - we do this 163 // Make a shader for the bitmap with an origin of the box we'll draw. This 346 const SkBitmap& bitmap = image_rep.sk_bitmap(); local 352 canvas_->drawBitmap(bitmap, 587 NOTREACHED() << "Attempting to draw bitmap from an empty rect!"; 612 const SkBitmap& bitmap = image_rep.sk_bitmap(); local 613 canvas_->drawBitmapRect(bitmap, &src_rect, dest_rect, &paint); 617 // Make a bitmap shader that contains the bitmap we want to draw. This i [all...] |
| 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/fio/ |
| smalloc.c | 23 #define SMALLOC_BPB 32 /* block size, bytes-per-bit in bitmap */ 39 unsigned int *bitmap; /* blocks free/busy map */ member in struct:pool 112 map = &pool->bitmap[pool_idx]; 208 pool->bitmap = (void *) ptr + (pool->nr_blocks * SMALLOC_BPL); 372 if (pool->bitmap[i] == -1U) { 379 idx = find_next_zero(pool->bitmap[i], last_idx);
|
| /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/ |
| ImageHeaderParser.java | 1 package com.bumptech.glide.load.resource.bitmap; 10 import static com.bumptech.glide.load.resource.bitmap.ImageHeaderParser.ImageType.GIF; 11 import static com.bumptech.glide.load.resource.bitmap.ImageHeaderParser.ImageType.JPEG; 12 import static com.bumptech.glide.load.resource.bitmap.ImageHeaderParser.ImageType.PNG; 13 import static com.bumptech.glide.load.resource.bitmap.ImageHeaderParser.ImageType.PNG_A; 14 import static com.bumptech.glide.load.resource.bitmap.ImageHeaderParser.ImageType.UNKNOWN;
|
| /external/openssl/ssl/ |
| d1_pkt.c | 171 static int dtls1_record_replay_check(SSL *s, DTLS1_BITMAP *bitmap); 172 static void dtls1_record_bitmap_update(SSL *s, DTLS1_BITMAP *bitmap); 535 dtls1_record_bitmap_update(s, &(s->d1->bitmap));/* Mark receipt of record. */ 561 DTLS1_BITMAP *bitmap; local 663 bitmap = dtls1_get_bitmap(s, rr, &is_next_epoch); 664 if ( bitmap == NULL) 684 !dtls1_record_replay_check(s, bitmap)) [all...] |
| /external/pdfium/core/src/fxge/Microsoft SDK/include/ |
| GdiPlusBitmap.h | 11 * Bitmap related declarations
588 Bitmap::Bitmap(
593 GpBitmap *bitmap = NULL;
local 597 lastResult = DllExports::GdipCreateBitmapFromFileICM(filename, &bitmap);
601 lastResult = DllExports::GdipCreateBitmapFromFile(filename, &bitmap);
604 SetNativeImage(bitmap);
608 Bitmap::Bitmap(
613 GpBitmap *bitmap = NULL; local 636 GpBitmap *bitmap = NULL; local 655 GpBitmap *bitmap = NULL; local 673 GpBitmap *bitmap = NULL; local 688 GpBitmap *bitmap = NULL; local 702 GpBitmap *bitmap = NULL; local 717 GpBitmap *bitmap = NULL; local 729 GpBitmap *bitmap = NULL; local 742 GpBitmap *bitmap = NULL; local 858 Bitmap* bitmap; local 903 Bitmap* bitmap; local [all...] |
| /external/skia/src/effects/ |
| SkTableColorFilter.cpp | 391 SkBitmap bitmap; local 393 this->asComponentTable(&bitmap); 395 GrTexture* texture = GrLockAndRefCachedBitmapTexture(context, bitmap, NULL);
|
| /external/skia/src/ports/ |
| SkImageDecoder_WIC.cpp | 180 //Get the size of the bitmap. 187 //Exit early if we're only looking for the bitmap bounds. 213 piBitmapSourceOriginal.get() //Input bitmap to convert 230 //Copy the pixels into the bitmap. 307 const SkBitmap* bitmap; local 310 bitmap = &bitmapOrig; 315 bitmap = &bitmapCopy; 319 if (!bitmap->isOpaque()) { 320 SkAutoLockPixels alp(*bitmap); 322 uint8_t* pixels = reinterpret_cast<uint8_t*>(bitmap->getPixels()) [all...] |
| /external/skia/tests/ |
| AAClipTest.cpp | 78 SkBitmap bitmap; local 79 bitmap.installPixels(info, mask->fImage, mask->fRowBytes); 87 SkCanvas canvas(bitmap);
|