HomeSort by relevance Sort by last modified time
    Searched refs:bm2 (Results 1 - 24 of 24) sorted by null

  /external/valgrind/main/drd/
drd_bitmap.h 341 static void bm2_clear(struct bitmap2* const bm2);
380 struct bitmap2** bm2)
384 tl_assert(bm2);
393 *bm2 = bm->cache[0].bm2;
400 *bm2 = bm->cache[1].bm2;
407 *bm2 = bm->cache[2].bm2;
415 *bm2 = bm->cache[3].bm2
    [all...]
drd_bitmap.c 43 static void bm2_print(const struct bitmap2* const bm2);
107 bm->cache[i].bm2 = 0;
155 struct bitmap2* bm2; local
164 bm2 = bm2_lookup_or_insert_exclusive(bm, address_msb(b));
165 tl_assert(bm2);
167 if (make_address(bm2->addr, 0) < a1)
170 if (make_address(bm2->addr, 0) < a2)
171 b_start = make_address(bm2->addr, 0);
175 if (make_address(bm2->addr + 1, 0) < a2)
176 b_end = make_address(bm2->addr + 1, 0)
252 struct bitmap2* bm2; local
347 struct bitmap2* bm2; local
377 const struct bitmap2* bm2 = bm2_lookup(bm, address_msb(b)); local
430 const struct bitmap2* bm2 = bm2_lookup(bm, address_msb(b)); local
485 const struct bitmap2* bm2 = bm2_lookup(bm, address_msb(b)); local
818 const struct bitmap2* bm2 = bm2_lookup(bm, address_msb(b)); local
1053 struct bitmap2* bm2; local
1069 const struct bitmap2* bm2; local
1099 struct bitmap2* bm2; local
1140 struct bitmap2* bm2; local
1213 struct bitmap2* bm2; local
    [all...]
pub_drd_bitmap.h 63 struct bitmap2* bm2; member in struct:bm_cache_elem
135 void DRD_(bm_swap)(struct bitmap* const bm1, struct bitmap* const bm2);
139 void DRD_(bm_mark)(struct bitmap* bm1, struct bitmap* bm2);
144 struct bitmap* const bm2);
147 struct bitmap* const bm2);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Pattern.cpp 95 SkBitmap bm2; local
96 bm2.allocPixels(info);
97 bm2.eraseARGB(0x00, 0x00, 0x00, 0x00);
98 SkCanvas canvas(bm2);
100 bm2.setImmutable();
101 m_pattern = adoptRef(SkShader::CreateBitmapShader(bm2, tileModeX, tileModeY, &localMatrix));
104 m_externalMemoryAllocated = static_cast<int>(std::min(static_cast<size_t>(INT_MAX), bm2.getSafeSize()));
  /external/valgrind/main/drd/tests/
unit_bitmap.c 99 int bm_equal_print_diffs(struct bitmap* bm1, struct bitmap* bm2)
103 equal = DRD_(bm_equal)(bm1, bm2);
111 if (DRD_(bm_has_1)(bm1, i, eLoad) != DRD_(bm_has_1)(bm2, i, eLoad)
112 || DRD_(bm_has_1)(bm1, i, eStore) != DRD_(bm_has_1)(bm2, i, eStore))
118 DRD_(bm_has_1)(bm2, i, eLoad) ? 'R' : ' ',
119 DRD_(bm_has_1)(bm2, i, eStore) ? 'W' : ' '
132 struct bitmap* bm2; local
157 bm2 = DRD_(bm_new)();
158 DRD_(bm_merge2)(bm2, bm);
159 DRD_(bm_merge2)(bm2, bm)
174 struct bitmap* bm2; local
197 struct bitmap* bm2; local
    [all...]
  /frameworks/base/graphics/tests/graphicstests/src/android/graphics/
BitmapTest.java 28 Bitmap bm2 = Bitmap.createBitmap(100, 200, Bitmap.Config.RGB_565); local
32 assertTrue("mutability", bm2.isMutable());
36 assertEquals("width", 100, bm2.getWidth());
40 assertEquals("rowbytes", 200, bm2.getRowBytes());
44 assertEquals("byteCount", 40000, bm2.getByteCount());
48 assertEquals("height", 200, bm2.getHeight());
52 assertFalse("hasAlpha", bm2.hasAlpha());
56 assertTrue("getConfig", bm2.getConfig() == Bitmap.Config.RGB_565);
63 Bitmap bm2 = Bitmap.createBitmap(new int[100 * 200], 100, 200, local
67 assertFalse("mutability", bm2.isMutable())
131 Bitmap bm2 = Bitmap.createBitmap(10, 10, config); local
157 Bitmap bm2 = Bitmap.createBitmap(10, 10, config); local
191 Bitmap bm2 = Bitmap.createBitmap(16, 16, config); local
    [all...]
  /external/chromium_org/third_party/skia/tests/
PDFJpegEmbedTest.cpp 77 SkBitmap bm2(bitmap_from_data(cmykData));
78 canvas->drawBitmap(bm2, 0.0, 512.0, NULL);
PictureStateTreeTest.cpp 67 static void check_bms(skiatest::Reporter* reporter, const SkBitmap& bm1, const SkBitmap& bm2) {
68 SkASSERT(bm1.getSize() == bm2.getSize());
69 REPORTER_ASSERT(reporter, 0 == memcmp(bm1.getAddr(0, 0), bm2.getAddr(0, 0), bm1.getSize()));
ImageNewShaderTest.cpp 19 void testBitmapEquality(skiatest::Reporter* reporter, SkBitmap& bm1, SkBitmap& bm2) {
21 SkAutoLockPixels lockBm2(bm2);
23 REPORTER_ASSERT(reporter, bm1.getSize() == bm2.getSize());
24 REPORTER_ASSERT(reporter, 0 == memcmp(bm1.getPixels(), bm2.getPixels(), bm1.getSize()));
BitmapCopyTest.cpp 160 static void reportCopyVerification(const SkBitmap& bm1, const SkBitmap& bm2,
170 getPixel(coords[i]->fX, coords[i]->fY, bm2));
  /external/chromium_org/third_party/skia/samplecode/
SampleHairline.cpp 227 SkBitmap bm, bm2; local
232 bm2.installPixels(SkImageInfo::MakeN32Premul(WIDTH, HEIGHT),
235 SkCanvas c2(bm2);
240 bm2.eraseColor(SK_ColorTRANSPARENT);
242 canvas->drawBitmap(bm2, SkIntToScalar(10), SkIntToScalar(10), NULL);
  /external/skia/samplecode/
SampleHairline.cpp 227 SkBitmap bm, bm2; local
232 bm2.installPixels(SkImageInfo::MakeN32Premul(WIDTH, HEIGHT),
235 SkCanvas c2(bm2);
240 bm2.eraseColor(SK_ColorTRANSPARENT);
242 canvas->drawBitmap(bm2, SkIntToScalar(10), SkIntToScalar(10), NULL);
  /external/chromium_org/third_party/skia/gm/
simpleaaclip.cpp 27 SkBitmap bm2; local
29 bm.deepCopyTo(&bm2);
31 canvas->drawBitmap(bm2,
aaclip.cpp 147 SkBitmap bm2; local
148 SkCreateBitmapFromCGImage(&bm2, image);
151 canvas->drawBitmap(bm2, 10, 120);
  /external/skia/gm/
simpleaaclip.cpp 27 SkBitmap bm2; local
29 bm.deepCopyTo(&bm2);
31 canvas->drawBitmap(bm2,
aaclip.cpp 147 SkBitmap bm2; local
148 SkCreateBitmapFromCGImage(&bm2, image);
151 canvas->drawBitmap(bm2, 10, 120);
  /external/skia/tests/
PictureStateTreeTest.cpp 67 static void check_bms(skiatest::Reporter* reporter, const SkBitmap& bm1, const SkBitmap& bm2) {
68 SkASSERT(bm1.getSize() == bm2.getSize());
69 REPORTER_ASSERT(reporter, 0 == memcmp(bm1.getAddr(0, 0), bm2.getAddr(0, 0), bm1.getSize()));
BitmapCopyTest.cpp 160 static void reportCopyVerification(const SkBitmap& bm1, const SkBitmap& bm2,
170 getPixel(coords[i]->fX, coords[i]->fY, bm2));
  /external/e2fsprogs/lib/ext2fs/
bitmaps.c 232 ext2fs_block_bitmap bm2)
235 bm1, bm2));
239 ext2fs_inode_bitmap bm2)
242 bm1, bm2));
gen_bitmap.c 347 ext2fs_generic_bitmap bm2)
353 if (!bm2 || bm2->magic != magic)
356 if ((bm1->start != bm2->start) ||
357 (bm1->end != bm2->end) ||
358 (memcmp(bm1->bitmap, bm2->bitmap,
364 ext2fs_fast_test_block_bitmap(bm2, i))
gen_bitmap64.c 582 ext2fs_generic_bitmap bm2)
586 if (!bm1 || !bm2)
588 if (bm1->magic != bm2->magic)
593 return ext2fs_compare_generic_bitmap(bm1->magic, neq, bm1, bm2);
598 if ((bm1->start != bm2->start) ||
599 (bm1->end != bm2->end))
604 ext2fs_test_generic_bmap(bm2, i))
ext2fs.h 778 ext2fs_block_bitmap bm2);
780 ext2fs_inode_bitmap bm2);
    [all...]
bitops.h 180 ext2fs_generic_bitmap bm2);
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapTest.java 403 Bitmap bm2 = Bitmap.createBitmap(100, 200, Bitmap.Config.RGB_565); local
408 assertEquals(Bitmap.Config.RGB_565, bm2.getConfig());
457 Bitmap bm2 = Bitmap.createBitmap(100, 200, Bitmap.Config.RGB_565); local
462 assertEquals(200, bm2.getRowBytes());
    [all...]

Completed in 264 milliseconds