Searched refs:bm1 (Results 1 - 3 of 3) sorted by relevance
/external/e2fsprogs/lib/ext2fs/ |
H A D | cmp_bitmaps.c | 29 errcode_t ext2fs_compare_block_bitmap(ext2fs_block_bitmap bm1, argument 34 EXT2_CHECK_MAGIC(bm1, EXT2_ET_MAGIC_BLOCK_BITMAP); 37 if ((bm1->start != bm2->start) || 38 (bm1->end != bm2->end) || 39 (memcmp(bm1->bitmap, bm2->bitmap, 40 (size_t) (bm1->end - bm1->start)/8))) 43 for (i = bm1->end - ((bm1->end - bm1 51 ext2fs_compare_inode_bitmap(ext2fs_inode_bitmap bm1, ext2fs_inode_bitmap bm2) argument [all...] |
H A D | ext2fs.h | 632 extern errcode_t ext2fs_compare_block_bitmap(ext2fs_block_bitmap bm1, 634 extern errcode_t ext2fs_compare_inode_bitmap(ext2fs_inode_bitmap bm1,
|
/external/skia/bench/ |
H A D | benchmain.cpp | 33 static bool equal(const SkBitmap& bm1, const SkBitmap& bm2) { argument 34 if (bm1.width() != bm2.width() || 35 bm1.height() != bm2.height() || 36 bm1.config() != bm2.config()) { 40 size_t pixelBytes = bm1.width() * bm1.bytesPerPixel(); 41 for (int y = 0; y < bm1.height(); y++) { 42 if (memcmp(bm1.getAddr(0, y), bm2.getAddr(0, y), pixelBytes)) {
|
Completed in 309 milliseconds