Home
last modified time | relevance | path

Searched refs:end_block (Results 1 – 4 of 4) sorted by relevance

/system/update_engine/scripts/update_payload/
Dcommon.py163 end_block = ex.start_block + ex.num_blocks
165 return '%d->%d * %d' % (ex.start_block, end_block, block_size)
166 return '%d->%d' % (ex.start_block, end_block)
Dchecker.py735 end_block = start_block + num_blocks
742 if usable_size and end_block * self.block_size > usable_size:
748 for i in range(start_block, end_block):
/system/extras/perf2cfg/doc/
DFSM.dot61 "End HIR" -> "End Block" [ label = "'end_block'" ];
62 "End HIR" -> "Error" [ label = "EOF OR NOT('end_block')" ];
/system/update_engine/payload_generator/
Dextent_ranges.cc252 uint64_t end_block = utils::DivRoundUp(start_bytes + size_bytes, block_size); in ExtentForBytes() local
253 return ExtentForRange(start_block, end_block - start_block); in ExtentForBytes()