Home | History | Annotate | Download | only in gptfdisk

Lines Matching refs:numSecspTrack

41    numSecspTrack = MAX_SECSPERTRACK;
54 numSecspTrack = MAX_SECSPERTRACK;
85 numSecspTrack = orig.numSecspTrack;
624 numSecspTrack = myDisk->GetNumSecsPerTrack();
627 partitions[0].SetGeometry(numHeads, numSecspTrack, diskSize, blockSize);
676 if ((!done) && (lba >= ((uint64_t) numHeads * numSecspTrack * MAX_CYLINDERS))) {
684 cylinder = lba / (uint64_t) (numHeads * numSecspTrack);
685 remainder = lba - (cylinder * numHeads * numSecspTrack);
686 head = remainder / numSecspTrack;
687 remainder -= head * numSecspTrack;
693 if (sector < numSecspTrack) {