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

/vbox/src/VBox/Storage/
H A DQCOW.cpp813 uint64_t offCluster; local
815 offCluster = pImage->offNextCluster;
818 return offCluster;
831 * @param offCluster Offset inside the cluster.
836 uint32_t offCluster, uint64_t *poffImage)
871 *poffImage = off + offCluster;
1693 uint32_t offCluster = 0; local
1716 qcowConvertLogicalOffset(pImage, uOffset, &idxL1, &idxL2, &offCluster);
1719 cbToRead = RT_MIN(cbToRead, pImage->cbCluster - offCluster);
1722 rc = qcowConvertToImageOffset(pImage, pIoCtx, idxL1, idxL2, offCluster,
834 qcowConvertToImageOffset(PQCOWIMAGE pImage, PVDIOCTX pIoCtx, uint32_t idxL1, uint32_t idxL2, uint32_t offCluster, uint64_t *poffImage) argument
1745 uint32_t offCluster = 0; local
[all...]
H A DQED.cpp761 uint64_t offCluster; local
763 offCluster = pImage->cbImage;
766 return offCluster;
779 * @param offCluster Offset inside the cluster.
784 uint32_t offCluster, uint64_t *poffImage)
801 *poffImage = pL2Entry->paL2Tbl[idxL2] + offCluster;
914 * @param offCluster The table offset to check.
918 DECLINLINE(bool) qedIsClusterOffsetValid(uint64_t offCluster, uint64_t cbFile, size_t cbCluster) argument
920 return (offCluster <= cbFile - cbCluster)
921 && !(offCluster
782 qedConvertToImageOffset(PQEDIMAGE pImage, PVDIOCTX pIoCtx, uint32_t idxL1, uint32_t idxL2, uint32_t offCluster, uint64_t *poffImage) argument
1787 uint32_t offCluster = 0; local
1839 uint32_t offCluster = 0; local
[all...]

Completed in 41 milliseconds