/external/valgrind/main/drd/ |
drd_bitmap.h | 332 struct bitmap2 340 static void bm2_clear(struct bitmap2* const bm2); 342 struct bitmap2* bm2_insert(struct bitmap* const bm, const UWord a1); 379 struct bitmap2** bm2) 458 struct bitmap2* const bm2) 501 const struct bitmap2* bm2_lookup(struct bitmap* const bm, const UWord a1) 503 struct bitmap2* bm2; 525 struct bitmap2* 528 struct bitmap2* bm2; 544 void bm2_clear(struct bitmap2* const bm2 [all...] |
drd_bitmap.c | 41 static void bm2_merge(struct bitmap2* const bm2l, 42 const struct bitmap2* const bm2r); 43 static void bm2_print(const struct bitmap2* const bm2); 61 VG_(free), 512, sizeof(struct bitmap2)); 155 struct bitmap2* bm2; 252 struct bitmap2* bm2; 347 struct bitmap2* bm2; 377 const struct bitmap2* bm2 = bm2_lookup(bm, address_msb(b)); 430 const struct bitmap2* bm2 = bm2_lookup(bm, address_msb(b)); 485 const struct bitmap2* bm2 = bm2_lookup(bm, address_msb(b)) [all...] |
pub_drd_bitmap.h | 63 struct bitmap2* bm2;
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
BitmapTest.java | 85 Bitmap bitmap2 = Robolectric.newInstanceOf(Bitmap.class); local 86 shadowOf(bitmap2).appendDescription("Bitmap Two"); 89 canvas.drawBitmap(bitmap2, 0, 0, null); 99 Bitmap bitmap2 = Robolectric.newInstanceOf(Bitmap.class); local 100 shadowOf(bitmap2).appendDescription("Bitmap Two"); 103 canvas.drawBitmap(bitmap2, new Matrix(), null); 113 Bitmap bitmap2 = Robolectric.newInstanceOf(Bitmap.class); local 114 shadowOf(bitmap2).appendDescription("Bitmap Two"); 119 canvas.drawBitmap(bitmap2, new Matrix(), paint);
|
/external/kernel-headers/original/linux/ |
bitmap.h | 86 const unsigned long *bitmap2, int bits); 94 const unsigned long *bitmap2, int bits); 96 const unsigned long *bitmap2, int bits); 98 const unsigned long *bitmap2, int bits); 100 const unsigned long *bitmap2, int bits); 102 const unsigned long *bitmap2, int bits); 104 const unsigned long *bitmap2, int bits);
|
/external/chromium_org/chrome/browser/prerender/ |
prerender_tab_helper.cc | 126 double CompareBitmaps(SkBitmap* bitmap1, SkBitmap* bitmap2) { 127 if (!bitmap1 || !bitmap2) { 130 if (bitmap1->width() != bitmap2->width() || 131 bitmap1->height() != bitmap2->height()) { 138 if (bitmap1->getColor(x, y) == bitmap2->getColor(x, y))
|
/external/chromium_org/ui/gfx/ |
skia_util.cc | 141 bool BitmapsAreEqual(const SkBitmap& bitmap1, const SkBitmap& bitmap2) { 152 bitmap2.lockPixels(); 153 addr2 = bitmap2.getAddr32(0, 0); 154 size2 = bitmap2.getSize(); 155 bitmap2.unlockPixels();
|
skia_util.h | 65 const SkBitmap& bitmap2);
|
/cts/tests/tests/holo/src/android/holo/cts/ |
LayoutTestActivity.java | 235 private String saveDiffBitmap(Bitmap bitmap1, Bitmap bitmap2) { 236 int width = Math.max(bitmap1.getWidth(), bitmap2.getWidth()); 237 int height = Math.max(bitmap1.getHeight(), bitmap2.getHeight()); 244 boolean inBounds2 = i < bitmap2.getWidth() && j < bitmap2.getHeight(); 249 int color2 = bitmap2.getPixel(i, j);
|
/external/chromium_org/ui/gfx/image/ |
image_unittest_util.h | 47 bool IsEqual(const SkBitmap& bitmap1, const SkBitmap& bitmap2);
|
image_unittest.cc | 153 const SkBitmap* bitmap2 = image.ToSkBitmap(); local 156 EXPECT_EQ(bitmap1, bitmap2); 528 const SkBitmap* bitmap2 = from_platform.ToSkBitmap(); local 529 SkAutoLockPixels auto_lock(*bitmap2); 532 gt::CheckColors(bitmap2->getColor(10, 10), SK_ColorRED); 533 gt::CheckColors(bitmap2->getColor(10, 40), SK_ColorGREEN); 571 const SkBitmap* bitmap2 = from_platform.ToSkBitmap(); local 572 SkAutoLockPixels auto_lock(*bitmap2); 575 gt::CheckColors(bitmap2->getColor(10, 10), SK_ColorRED);
|
/external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/ |
TextureUtil.java | 71 Bitmap bitmap2 = Bitmap.createScaledBitmap(bitmap, width, height, true); local 74 bitmap = bitmap2; 96 Bitmap bitmap2 = Bitmap.createScaledBitmap(bitmap, width, height, true); local 98 bitmap = bitmap2;
|
/external/chromium/net/disk_cache/ |
bitmap_unittest.cc | 108 disk_cache::Bitmap bitmap2(reinterpret_cast<uint32*>(local_map), 110 EXPECT_EQ(0, memcmp(local_map, bitmap2.GetMap(), kMapSize)); 113 EXPECT_EQ(0, memcmp(local_map, bitmap2.GetMap(), kMapSize));
|
/external/chromium_org/net/disk_cache/ |
bitmap_unittest.cc | 108 disk_cache::Bitmap bitmap2(reinterpret_cast<uint32*>(local_map), 110 EXPECT_EQ(0, memcmp(local_map, bitmap2.GetMap(), kMapSize)); 113 EXPECT_EQ(0, memcmp(local_map, bitmap2.GetMap(), kMapSize));
|
/external/chromium_org/chrome/browser/extensions/api/extension_action/ |
browser_action_apitest.cc | 65 SkBitmap bitmap2 = i2.GetRepresentation(scale).sk_bitmap(); local 66 return gfx::BitmapsAreEqual(bitmap1, bitmap2);
|
/cts/tests/tests/view/src/android/view/cts/ |
ViewTest.java | 1049 Bitmap bitmap2 = view.getDrawingCache(); local [all...] |