HomeSort by relevance Sort by last modified time
    Searched defs:new_bitmap (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/cc/resources/
caching_bitmap_content_layer_updater.cc 47 const SkBitmap& new_bitmap = canvas_->getDevice()->accessBitmap(false); local
48 SkAutoLockPixels lock(new_bitmap);
49 DCHECK_GT(new_bitmap.bytesPerPixel(), 0);
50 pixels_did_change_ = new_bitmap.config() != cached_bitmap_.config() ||
51 new_bitmap.height() != cached_bitmap_.height() ||
52 new_bitmap.width() != cached_bitmap_.width() ||
53 memcmp(new_bitmap.getPixels(),
55 new_bitmap.getSafeSize());
58 new_bitmap.deepCopyTo(&cached_bitmap_, new_bitmap.config())
    [all...]
  /external/chromium_org/ash/desktop_background/
wallpaper_resizer.cc 33 SkBitmap new_bitmap = orig_bitmap; local
47 orig_bitmap.extractSubset(&new_bitmap,
52 orig_bitmap.extractSubset(&new_bitmap,
56 new_bitmap = skia::ImageOperations::Resize(
81 new_bitmap = skia::ImageOperations::Resize(
88 *resized_bitmap_out = new_bitmap;
  /external/chromium_org/content/browser/renderer_host/
backing_store_aura.cc 67 SkBitmap new_bitmap; local
68 new_bitmap.setConfig(SkBitmap::kARGB_8888_Config,
70 new_bitmap.allocPixels();
71 scoped_ptr<SkCanvas> new_canvas(new SkCanvas(new_bitmap));
82 bitmap_ = new_bitmap;
  /art/runtime/gc/collector/
mark_sweep.cc 403 accounting::SpaceBitmap* new_bitmap = heap_->GetMarkBitmap()->GetContinuousSpaceBitmap(obj); local
404 if (LIKELY(new_bitmap != NULL)) {
405 object_bitmap = new_bitmap;
428 accounting::SpaceBitmap* new_bitmap = heap_->GetMarkBitmap()->GetContinuousSpaceBitmap(obj); local
429 if (LIKELY(new_bitmap != NULL)) {
430 object_bitmap = new_bitmap;
490 accounting::SpaceBitmap* new_bitmap = heap_->GetMarkBitmap()->GetContinuousSpaceBitmap(obj); local
491 if (new_bitmap != NULL) {
492 object_bitmap = new_bitmap;
1609 accounting::SpaceBitmap* new_bitmap = alloc_space->temp_bitmap_.release(); local
    [all...]

Completed in 128 milliseconds