Home | History | Annotate | Download | only in payload_generator

Lines Matching refs:block

30 // |block| must either be the next block in the last extent or a block
31 // in the next extent. This function will not handle inserting block
33 void AppendBlockToExtents(std::vector<Extent>* extents, uint64_t block);
44 for (uint64_t block = extent.start_block();
45 block < (extent.start_block() + extent.num_blocks()); block++) {
46 ret.push_back(block);
71 // to be sorted by start block. E.g. if |extents| is [(1, 2), (3, 5), (10, 2)]