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

/vbox/src/VBox/Storage/
H A DQCOW.cpp745 uint32_t cClusterBits, cL2TableBits; local
747 cClusterBits = qcowGetPowerOfTwo(pImage->cbCluster);
750 Assert(cClusterBits + cL2TableBits < 64);
753 pImage->fL2Mask = ((uint64_t)pImage->cL2TableEntries - 1) << cClusterBits;
754 pImage->cL2Shift = cClusterBits;
755 pImage->cL1Shift = cClusterBits + cL2TableBits;
H A DQED.cpp692 uint32_t cClusterBits, cTableBits; local
694 cClusterBits = qedGetPowerOfTwo(pImage->cbCluster);
697 Assert(cClusterBits + 2 * cTableBits <= 64);
700 pImage->fL2Mask = ((uint64_t)pImage->cTableEntries - 1) << cClusterBits;
701 pImage->cL2Shift = cClusterBits;
702 pImage->fL1Mask = ((uint64_t)pImage->cTableEntries - 1) << (cClusterBits + cTableBits);
703 pImage->cL1Shift = cClusterBits + cTableBits;

Completed in 44 milliseconds