Lines Matching refs:pPCHSGeometry

6830  * @param   pPCHSGeometry   Pointer to physical disk geometry <= (16383,16,63). Not NULL.
6840 PCVDGEOMETRY pPCHSGeometry,
6854 pPCHSGeometry->cCylinders, pPCHSGeometry->cHeads,
6855 pPCHSGeometry->cSectors, pLCHSGeometry->cCylinders,
6882 AssertMsgBreakStmt( VALID_PTR(pPCHSGeometry)
6883 && pPCHSGeometry->cHeads <= 16
6884 && pPCHSGeometry->cSectors <= 63,
6885 ("pPCHSGeometry=%#p PCHS=%u/%u/%u\n", pPCHSGeometry,
6886 pPCHSGeometry->cCylinders, pPCHSGeometry->cHeads,
6887 pPCHSGeometry->cSectors),
6985 uImageFlags, pszComment, pPCHSGeometry,
8524 * @param pPCHSGeometry Pointer to the new physical disk geometry <= (16383,16,63). Not NULL.
8529 PCVDGEOMETRY pPCHSGeometry,
8585 if (pPCHSGeometry->cCylinders == 0)
8597 pPCHSGeometryNew = pPCHSGeometry;
9569 * @param pPCHSGeometry Where to store PCHS geometry. Not NULL.
9572 PVDGEOMETRY pPCHSGeometry)
9578 LogFlowFunc(("pDisk=%#p nImage=%u pPCHSGeometry=%#p\n",
9579 pDisk, nImage, pPCHSGeometry));
9587 AssertMsgBreakStmt(VALID_PTR(pPCHSGeometry),
9588 ("pPCHSGeometry=%#p\n", pPCHSGeometry),
9602 *pPCHSGeometry = pDisk->PCHSGeometry;
9608 pPCHSGeometry);
9633 * @param pPCHSGeometry Where to load PCHS geometry from. Not NULL.
9636 PCVDGEOMETRY pPCHSGeometry)
9642 LogFlowFunc(("pDisk=%#p nImage=%u pPCHSGeometry=%#p PCHS=%u/%u/%u\n",
9643 pDisk, nImage, pPCHSGeometry, pPCHSGeometry->cCylinders,
9644 pPCHSGeometry->cHeads, pPCHSGeometry->cSectors));
9652 AssertMsgBreakStmt( VALID_PTR(pPCHSGeometry)
9653 && pPCHSGeometry->cHeads <= 16
9654 && pPCHSGeometry->cSectors <= 63,
9655 ("pPCHSGeometry=%#p PCHS=%u/%u/%u\n", pPCHSGeometry,
9656 pPCHSGeometry->cCylinders, pPCHSGeometry->cHeads,
9657 pPCHSGeometry->cSectors),
9669 if ( pPCHSGeometry->cCylinders != pDisk->PCHSGeometry.cCylinders
9670 || pPCHSGeometry->cHeads != pDisk->PCHSGeometry.cHeads
9671 || pPCHSGeometry->cSectors != pDisk->PCHSGeometry.cSectors)
9679 pPCHSGeometry);
9704 || pPCHSGeometry->cCylinders != PCHS.cCylinders
9705 || pPCHSGeometry->cHeads != PCHS.cHeads
9706 || pPCHSGeometry->cSectors != PCHS.cSectors)
9714 pPCHSGeometry);