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

/vbox/src/VBox/Storage/
H A DQCOW.cpp764 * @param pidxL1 Where to store the index in the L1 table on success.
768 DECLINLINE(void) qcowConvertLogicalOffset(PQCOWIMAGE pImage, uint64_t off, uint32_t *pidxL1, argument
771 AssertPtr(pidxL1);
776 *pidxL1 = off >> pImage->cL1Shift;
H A DQED.cpp712 * @param pidxL1 Where to store the index in the L1 table on success.
716 DECLINLINE(void) qedConvertLogicalOffset(PQEDIMAGE pImage, uint64_t off, uint32_t *pidxL1, argument
719 AssertPtr(pidxL1);
724 *pidxL1 = (off & pImage->fL1Mask) >> pImage->cL1Shift;

Completed in 54 milliseconds