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

/vbox/src/VBox/Storage/
H A DVHD.cpp167 uint32_t cBlockAllocationTableEntries; member in struct:VHDIMAGE
457 ddh.MaxTableEntries = RT_H2BE_U32(pImage->cBlockAllocationTableEntries);
509 size_t cbBlockAllocationTableToWrite = pImage->cBlockAllocationTableEntries * sizeof(uint32_t);
518 for (unsigned i = 0; i < pImage->cBlockAllocationTableEntries; i++)
731 pImage->cBlockAllocationTableEntries = RT_BE2H_U32(vhdDynamicDiskHeader.MaxTableEntries);
732 LogFlowFunc(("MaxTableEntries=%lu\n", pImage->cBlockAllocationTableEntries));
754 pBlockAllocationTable = (uint32_t *)RTMemAllocZ(pImage->cBlockAllocationTableEntries * sizeof(uint32_t));
766 pImage->cBlockAllocationTableEntries * sizeof(uint32_t));
772 pImage->pBlockAllocationTable = (uint32_t *)RTMemAllocZ(pImage->cBlockAllocationTableEntries * sizeof(uint32_t));
779 for (i = 0; i < pImage->cBlockAllocationTableEntries;
[all...]

Completed in 51 milliseconds