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

/vbox/src/VBox/Storage/
H A DQED.cpp944 * @param pvClusterBitmap The cluster bitmap to use.
948 static bool qedClusterBitmapCheckAndSet(void *pvClusterBitmap, uint32_t offClusterStart, uint32_t offClusterEnd) argument
951 if (ASMBitTest(pvClusterBitmap, offCluster))
954 ASMBitSetRange(pvClusterBitmap, offClusterStart, offClusterEnd);
979 void *pvClusterBitmap = NULL; local
1017 pvClusterBitmap = RTMemAllocZ(cbFile / pHeader->u32ClusterSize / 8);
1018 if (!pvClusterBitmap)
1047 ASMBitSet(pvClusterBitmap, 0); /* Header is always in cluster 0. */
1049 bool fSet = qedClusterBitmapCheckAndSet(pvClusterBitmap, offClusterStart, offClusterStart + pHeader->u32TableSize);
1070 fSet = qedClusterBitmapCheckAndSet(pvClusterBitmap, offClusterStar
[all...]

Completed in 48 milliseconds