Searched refs:bm2 (Results 1 - 22 of 22) sorted by relevance

/external/valgrind/main/drd/
H A Ddrd_bitmap.h341 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
[all...]
H A Ddrd_bitmap.c43 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
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
1012 bm_swap(struct bitmap* const bm1, struct bitmap* const bm2) argument
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
1223 bm2_print(const struct bitmap2* const bm2) argument
[all...]
H A Dpub_drd_bitmap.h63 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/
H A DPattern.cpp95 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/
H A Dunit_bitmap.c99 int bm_equal_print_diffs(struct bitmap* bm1, struct bitmap* bm2) argument
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, b
174 struct bitmap* bm2; local
197 struct bitmap* bm2; local
[all...]
/external/chromium_org/third_party/skia/tests/
H A DPDFJpegEmbedTest.cpp77 SkBitmap bm2(bitmap_from_data(cmykData));
78 canvas->drawBitmap(bm2, 0.0, 512.0, NULL);
H A DPictureStateTreeTest.cpp67 static void check_bms(skiatest::Reporter* reporter, const SkBitmap& bm1, const SkBitmap& bm2) { argument
68 SkASSERT(bm1.getSize() == bm2.getSize());
69 REPORTER_ASSERT(reporter, 0 == memcmp(bm1.getAddr(0, 0), bm2.getAddr(0, 0), bm1.getSize()));
H A DImageNewShaderTest.cpp19 void testBitmapEquality(skiatest::Reporter* reporter, SkBitmap& bm1, SkBitmap& bm2) { argument
21 SkAutoLockPixels lockBm2(bm2);
23 REPORTER_ASSERT(reporter, bm1.getSize() == bm2.getSize());
24 REPORTER_ASSERT(reporter, 0 == memcmp(bm1.getPixels(), bm2.getPixels(), bm1.getSize()));
H A DBitmapCopyTest.cpp160 static void reportCopyVerification(const SkBitmap& bm1, const SkBitmap& bm2, argument
170 getPixel(coords[i]->fX, coords[i]->fY, bm2));
/external/chromium_org/third_party/skia/samplecode/
H A DSampleHairline.cpp227 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/
H A DSampleHairline.cpp227 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/
H A Dsimpleaaclip.cpp27 SkBitmap bm2; local
29 bm.deepCopyTo(&bm2);
31 canvas->drawBitmap(bm2,
H A Daaclip.cpp147 SkBitmap bm2; local
148 SkCreateBitmapFromCGImage(&bm2, image);
151 canvas->drawBitmap(bm2, 10, 120);
/external/skia/gm/
H A Dsimpleaaclip.cpp27 SkBitmap bm2; local
29 bm.deepCopyTo(&bm2);
31 canvas->drawBitmap(bm2,
H A Daaclip.cpp147 SkBitmap bm2; local
148 SkCreateBitmapFromCGImage(&bm2, image);
151 canvas->drawBitmap(bm2, 10, 120);
/external/skia/tests/
H A DPictureStateTreeTest.cpp67 static void check_bms(skiatest::Reporter* reporter, const SkBitmap& bm1, const SkBitmap& bm2) { argument
68 SkASSERT(bm1.getSize() == bm2.getSize());
69 REPORTER_ASSERT(reporter, 0 == memcmp(bm1.getAddr(0, 0), bm2.getAddr(0, 0), bm1.getSize()));
H A DBitmapCopyTest.cpp160 static void reportCopyVerification(const SkBitmap& bm1, const SkBitmap& bm2, argument
170 getPixel(coords[i]->fX, coords[i]->fY, bm2));
/external/e2fsprogs/lib/ext2fs/
H A Dbitmaps.c232 ext2fs_block_bitmap bm2)
235 bm1, bm2));
239 ext2fs_inode_bitmap bm2)
242 bm1, bm2));
231 ext2fs_compare_block_bitmap(ext2fs_block_bitmap bm1, ext2fs_block_bitmap bm2) argument
238 ext2fs_compare_inode_bitmap(ext2fs_inode_bitmap bm1, ext2fs_inode_bitmap bm2) argument
H A Dgen_bitmap.c347 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))
345 ext2fs_compare_generic_bitmap(errcode_t magic, errcode_t neq, ext2fs_generic_bitmap bm1, ext2fs_generic_bitmap bm2) argument
H A Dgen_bitmap64.c582 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))
580 ext2fs_compare_generic_bmap(errcode_t neq, ext2fs_generic_bitmap bm1, ext2fs_generic_bitmap bm2) argument
H A Dext2fs.h778 ext2fs_block_bitmap bm2);
780 ext2fs_inode_bitmap bm2);
1168 ext2fs_generic_bitmap bm2);
1204 ext2fs_generic_bitmap bm2);
H A Dbitops.h180 ext2fs_generic_bitmap bm2);

Completed in 8007 milliseconds