Searched defs:BlockRange (Results 1 – 1 of 1) sorted by relevance
199 pub struct BlockRange { struct200 pub lba_start: usize, // 起始块的lba_id201 pub lba_end: usize, // 终止块的lba_id202 pub begin: usize, // 起始位置在块内的偏移量, 如果BlockIter启用Multiblock,则是多个块的偏移量203 pub end: usize, // 结束位置在块内的偏移量,单位是字节227 pub fn next_block(&mut self) -> BlockRange { in next_block()250 pub fn next_multiblock(&mut self) -> BlockRange { in next_multiblock()296 impl BlockRange { implementation