/external/valgrind/main/drd/ |
D | drd_bitmap.h | 340 static void bm2_clear(struct bitmap2* const bm2); 379 struct bitmap2** bm2) in bm_cache_lookup() argument 383 tl_assert(bm2); in bm_cache_lookup() 392 *bm2 = bm->cache[0].bm2; in bm_cache_lookup() 399 *bm2 = bm->cache[1].bm2; in bm_cache_lookup() 406 *bm2 = bm->cache[2].bm2; in bm_cache_lookup() 414 *bm2 = bm->cache[3].bm2; in bm_cache_lookup() 422 *bm2 = bm->cache[4].bm2; in bm_cache_lookup() 430 *bm2 = bm->cache[5].bm2; in bm_cache_lookup() 438 *bm2 = bm->cache[6].bm2; in bm_cache_lookup() [all …]
|
D | drd_bitmap.c | 44 static void bm2_print(const struct bitmap2* const bm2); 92 bm->cache[i].bm2 = 0; in DRD_() 141 struct bitmap2* bm2; in DRD_() local 150 bm2 = bm2_lookup_or_insert_exclusive(bm, address_msb(b)); in DRD_() 151 tl_assert(bm2); in DRD_() 153 if (make_address(bm2->addr, 0) < a1) in DRD_() 156 if (make_address(bm2->addr, 0) < a2) in DRD_() 157 b_start = make_address(bm2->addr, 0); in DRD_() 161 if (make_address(bm2->addr + 1, 0) < a2) in DRD_() 162 b_end = make_address(bm2->addr + 1, 0); in DRD_() [all …]
|
D | drd_bitmap2_node.c | 156 void DRD_(bm2_free_node)(void* const bm2) in DRD_() 160 tl_assert(bm2); in DRD_() 164 if (p->data <= bm2 && bm2 < p->data_end) { in DRD_() 166 tl_assert(((char*)bm2 - (char*)(p->data)) % s_bm2_node_size == 0); in DRD_() 167 *(void**)bm2 = p->first_free; in DRD_() 168 p->first_free = bm2; in DRD_() 177 VG_(free)(bm2); in DRD_()
|
D | pub_drd_bitmap.h | 64 struct bitmap2* bm2; member 133 void DRD_(bm_swap)(struct bitmap* const bm1, struct bitmap* const bm2); 137 void DRD_(bm_mark)(struct bitmap* bm1, struct bitmap* bm2); 142 struct bitmap* const bm2); 145 struct bitmap* const bm2); 152 void DRD_(bm2_free_node)(void* const bm2);
|
/external/valgrind/main/drd/tests/ |
D | unit_bitmap.c | 89 int bm_equal_print_diffs(struct bitmap* bm1, struct bitmap* bm2) in bm_equal_print_diffs() argument 93 equal = DRD_(bm_equal)(bm1, bm2); in bm_equal_print_diffs() 101 if (DRD_(bm_has_1)(bm1, i, eLoad) != DRD_(bm_has_1)(bm2, i, eLoad) in bm_equal_print_diffs() 102 || DRD_(bm_has_1)(bm1, i, eStore) != DRD_(bm_has_1)(bm2, i, eStore)) in bm_equal_print_diffs() 108 DRD_(bm_has_1)(bm2, i, eLoad) ? 'R' : ' ', in bm_equal_print_diffs() 109 DRD_(bm_has_1)(bm2, i, eStore) ? 'W' : ' ' in bm_equal_print_diffs() 122 struct bitmap* bm2; in bm_test1() local 147 bm2 = DRD_(bm_new)(); in bm_test1() 148 DRD_(bm_merge2)(bm2, bm); in bm_test1() 149 DRD_(bm_merge2)(bm2, bm); in bm_test1() [all …]
|
/external/webkit/Source/WebCore/platform/graphics/skia/ |
D | PatternSkia.cpp | 85 SkBitmap bm2; in platformPattern() local 86 bm2.setConfig(bm->config(), bm->width() + expandW, bm->height() + expandH); in platformPattern() 87 bm2.allocPixels(); in platformPattern() 88 bm2.eraseARGB(0x00, 0x00, 0x00, 0x00); in platformPattern() 89 SkCanvas canvas(bm2); in platformPattern() 91 m_pattern = SkShader::CreateBitmapShader(bm2, tileModeX, tileModeY); in platformPattern()
|
/external/e2fsprogs/lib/ext2fs/ |
D | bitmaps.c | 134 ext2fs_block_bitmap bm2) in ext2fs_compare_block_bitmap() argument 138 bm1, bm2)); in ext2fs_compare_block_bitmap() 142 ext2fs_inode_bitmap bm2) in ext2fs_compare_inode_bitmap() argument 146 bm1, bm2)); in ext2fs_compare_inode_bitmap()
|
D | gen_bitmap.c | 268 ext2fs_generic_bitmap bm2) in ext2fs_compare_generic_bitmap() argument 274 if (!bm2 || bm2->magic != magic) in ext2fs_compare_generic_bitmap() 277 if ((bm1->start != bm2->start) || in ext2fs_compare_generic_bitmap() 278 (bm1->end != bm2->end) || in ext2fs_compare_generic_bitmap() 279 (memcmp(bm1->bitmap, bm2->bitmap, in ext2fs_compare_generic_bitmap() 285 ext2fs_fast_test_block_bitmap(bm2, i)) in ext2fs_compare_generic_bitmap()
|
D | ext2fs.h | 668 ext2fs_block_bitmap bm2); 670 ext2fs_inode_bitmap bm2); 927 ext2fs_generic_bitmap bm2);
|
/external/skia/samplecode/ |
D | SampleHairline.cpp | 229 SkBitmap bm, bm2; in onDrawContent() local 237 bm2.setConfig(SkBitmap::kARGB_8888_Config, WIDTH, HEIGHT, in onDrawContent() 239 bm2.setPixels(bm.getAddr32(MARGIN, MARGIN)); in onDrawContent() 241 SkCanvas c2(bm2); in onDrawContent() 246 bm2.eraseColor(0); in onDrawContent() 248 canvas->drawBitmap(bm2, SkIntToScalar(10), SkIntToScalar(10), NULL); in onDrawContent()
|
D | SampleXfermodes.cpp | 47 SkBitmap bm1, bm2, bm3; 49 bm2.setConfig(SkBitmap::kRGB_565_Config, width, 256); bm2.allocPixels(NULL); 66 sk_memset16(bm2.getAddr16(0, alpha), SkPackRGB16(dr, dg, dr), bm2.width()); 82 canvas->drawBitmap(bm2, 0, 0, NULL); canvas->translate(dx, 0);
|
/external/skia/bench/ |
D | benchmain.cpp | 49 static bool equal(const SkBitmap& bm1, const SkBitmap& bm2) { 50 if (bm1.width() != bm2.width() || 51 bm1.height() != bm2.height() || 52 bm1.config() != bm2.config()) { 58 if (memcmp(bm1.getAddr(0, y), bm2.getAddr(0, y), pixelBytes)) {
|
/external/skia/tests/ |
D | BitmapCopyTest.cpp | 214 void reportCopyVerification(const SkBitmap& bm1, const SkBitmap& bm2, in reportCopyVerification() argument 224 getPixel(coords[i]->fX, coords[i]->fY, bm2)); in reportCopyVerification()
|
/external/e2fsprogs/doc/ |
D | libext2fs.texinfo | 1041 …rrcode_t ext2fs_compare_block_bitmap (ext2fs_block_bitmap @var{bm1}, ext2fs_block_bitmap @var{bm2}) 1044 …rrcode_t ext2fs_compare_inode_bitmap (ext2fs_inode_bitmap @var{bm1}, ext2fs_inode_bitmap @var{bm2})
|