Searched refs:total_blocks (Results 1 – 9 of 9) sorted by relevance
/system/update_engine/payload_consumer/ |
D | file_descriptor_utils.cc | 43 auto total_blocks = utils::BlocksInExtents(src_extents); in CommonHashExtents() local 54 while (total_blocks > 0) { in CommonHashExtents() 55 auto read_blocks = std::min(total_blocks, buffer_blocks); in CommonHashExtents() 65 total_blocks -= read_blocks; in CommonHashExtents()
|
/system/update_engine/payload_generator/ |
D | mapfile_filesystem_unittest.cc | 47 void ExpectBlocksInRange(const vector<Extent>& extents, uint64_t total_blocks) { in ExpectBlocksInRange() argument 50 EXPECT_LE(extent.start_block() + extent.num_blocks(), total_blocks); in ExpectBlocksInRange()
|
D | ext2_filesystem_unittest.cc | 53 void ExpectBlocksInRange(const vector<Extent>& extents, uint64_t total_blocks) { in ExpectBlocksInRange() argument 56 EXPECT_LE(extent.start_block() + extent.num_blocks(), total_blocks); in ExpectBlocksInRange()
|
D | squashfs_filesystem_unittest.cc | 54 void ExpectBlocksInRange(const vector<Extent>& extents, uint64_t total_blocks) { in ExpectBlocksInRange() argument 57 EXPECT_LE(extent.start_block() + extent.num_blocks(), total_blocks); in ExpectBlocksInRange()
|
D | delta_diff_utils.cc | 562 uint64_t total_blocks = utils::BlocksInExtents(new_extents); in DeltaReadFile() local 564 chunk_blocks = total_blocks; in DeltaReadFile() 566 for (uint64_t block_offset = 0; block_offset < total_blocks; in DeltaReadFile() 604 if (static_cast<uint64_t>(chunk_blocks) < total_blocks) { in DeltaReadFile()
|
/system/extras/f2fs_utils/ |
D | f2fs_sparseblock.c | 156 SLOGD("total_blocks: %" PRIu64, info->total_blocks); in dbg_print_info_struct() 317 u64 num_segments = (info->total_blocks - info->main_blkaddr in gather_sit_info() 414 info->total_blocks = sb->block_count; in generate_f2fs_info() 496 while (block < info->total_blocks) { in run_on_used_blocks() 562 int pdone = (pos * 100) / d->info->total_blocks; in copy_used() 629 ftruncate64(outfd, info->total_blocks * F2FS_BLKSIZE); in main()
|
D | f2fs_sparseblock.h | 61 u_int64_t total_blocks; member
|
/system/nfc/src/nfc/tags/ |
D | rw_t2t_ndef.cc | 1112 uint16_t total_blocks = p_cc[2] * 2 + T2T_FIRST_DATA_BLOCK; in rw_t2t_write_ndef_first_block() local 1145 while (p_t2t->work_offset == 0 && block < total_blocks) { in rw_t2t_write_ndef_first_block() 1209 uint16_t total_blocks = p_cc[2] * 2 + T2T_FIRST_DATA_BLOCK; in rw_t2t_write_ndef_next_block() local 1227 while (p_t2t->work_offset == initial_offset && block < total_blocks) { in rw_t2t_write_ndef_next_block() 1266 while (p_t2t->work_offset == initial_offset && block < total_blocks) { in rw_t2t_write_ndef_next_block()
|
/system/update_engine/scripts/update_payload/ |
D | checker.py | 634 def _CheckLength(self, length, total_blocks, op_name, length_name): argument 651 self._CheckBlocksFitLength(length, total_blocks, self.block_size,
|