Searched defs:offStartDataNew (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Storage/
H A DVDI.cpp2683 uint64_t offStartDataNew = RT_ALIGN_32(pImage->offStartBlocks + cbBlockspaceNew, VDI_DATA_ALIGN); /** < New start offset for block data after the resize */ local
2685 if ( pImage->offStartData != offStartDataNew
2689 uint64_t cbOverlapping = offStartDataNew - pImage->offStartData;
2697 offStartDataNew = pImage->offStartData;
2734 offStartDataNew, pvBuf,
2752 offStartDataNew, pvZero,
2782 offStartDataNew += pImage->cbTotalBlockData;
2796 pImage->offStartData = offStartDataNew;
2797 setImageDataOffset(&pImage->Header, offStartDataNew);
H A DVHD.cpp2702 uint64_t offStartDataNew = RT_ALIGN_32(pImage->uBlockAllocationTableOffset + cbBlockspaceNew, VHD_SECTOR_SIZE); /** < New start offset for block data after the resize */ local
2717 if ( offStartDataOld != offStartDataNew
2721 uint64_t cbOverlapping = offStartDataNew - offStartDataOld;
2727 offStartDataNew = offStartDataOld;
2757 uint32_t uBlock = offStartDataNew / VHD_SECTOR_SIZE;
2766 offStartDataNew, pvBuf, cbBlock);
2777 offStartDataNew, pvZero, cbBlock);
2794 offStartDataNew += cbBlock;

Completed in 60 milliseconds