Lines Matching refs:next_block

394 	u64 next_block = start_block;
405 .start_block = next_block,
411 next_block += sls->volume_blocks;
415 .start_block = next_block,
421 next_block += sls->save_blocks;
429 u64 next_block = layout->offset / sls->block_size;
434 .start_block = next_block++,
441 .start_block = next_block++,
447 setup_sub_index(layout, next_block, sls);
448 next_block += sls->sub_index_blocks;
451 .start_block = next_block,
601 u64 next_block = isl->index_save.start_block;
607 .start_block = next_block++,
614 .start_block = next_block,
620 next_block += page_map_blocks;
624 .start_block = next_block,
985 u64 next_block;
995 next_block = isl->index_save.start_block;
997 .start_block = next_block++,
1004 .start_block = next_block,
1009 next_block += super->page_map_blocks;
1017 .start_block = next_block,
1023 next_block += volume_index_blocks;
1028 .start_block = next_block,
1034 next_block += super->open_chapter_blocks;
1037 .start_block = next_block,
1297 u64 next_block = start_block;
1300 result = verify_region(&sil->sub_index, next_block, RL_KIND_INDEX, 0);
1307 result = verify_region(&sil->volume, next_block, RL_KIND_VOLUME,
1312 next_block += sil->volume.block_count + layout->super.volume_offset;
1316 result = verify_region(&sil->saves[i].index_save, next_block,
1321 next_block += sil->saves[i].index_save.block_count;
1324 next_block -= layout->super.volume_offset;
1325 if (next_block != start_block + sil->sub_index.block_count) {
1337 u64 next_block = first_block;
1347 result = verify_region(&layout->header, next_block++, RL_KIND_HEADER,
1353 result = verify_region(&layout->config, next_block++, RL_KIND_CONFIG,
1358 result = verify_sub_index(layout, next_block, table);
1362 next_block += layout->index.sub_index.block_count;
1365 result = verify_region(&layout->seal, next_block + layout->super.volume_offset,
1370 if (++next_block != (first_block + layout->total_blocks)) {
1469 u64 next_block = isl->index_save.start_block;
1470 u64 last_block = next_block + isl->index_save.block_count;
1488 result = verify_region(&isl->header, next_block++, RL_KIND_HEADER,
1494 result = verify_region(&isl->index_page_map, next_block, RL_KIND_INDEX_PAGE_MAP,
1499 next_block += isl->index_page_map.block_count;
1503 result = verify_region(&isl->volume_index_zones[z], next_block,
1508 next_block += isl->volume_index_zones[z].block_count;
1512 result = verify_region(&isl->open_chapter, next_block, RL_KIND_OPEN_CHAPTER,
1517 next_block += isl->open_chapter.block_count;
1519 result = verify_region(&isl->free_space, next_block, RL_KIND_EMPTY,
1524 next_block += isl->free_space.block_count;
1525 if (next_block != last_block) {