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

/vbox/src/VBox/Storage/
H A DVD.cpp5533 static void vdFixupPCHSGeometry(PVDGEOMETRY pPCHS, uint64_t cbSize) argument
5539 if ( pPCHS->cHeads > 16
5540 || pPCHS->cSectors > 63
5541 || pPCHS->cCylinders == 0
5542 || (uint64_t)pPCHS->cHeads * pPCHS->cSectors * pPCHS->cCylinders * 512 > cbSize)
5545 pPCHS->cCylinders = (uint32_t)RT_MIN(cbSize / 512 / 16 / 63, 16383);
5546 pPCHS->cHeads = 16;
5547 pPCHS
[all...]

Completed in 73 milliseconds