HomeSort by relevance Sort by last modified time
    Searched refs:numSecspTrack (Results 1 - 4 of 4) sorted by null

  /external/gptfdisk/
mbrpart.cc 34 uint32_t MBRPart::numSecspTrack = MAX_SECSPERTRACK;
55 numSecspTrack = MAX_SECSPERTRACK;
128 numSecspTrack = sectors;
273 if ((!done) && (lba >= (numHeads * numSecspTrack * MAX_CYLINDERS))) {
281 cylinder = lba / (numHeads * numSecspTrack);
282 remainder = lba - (cylinder * numHeads * numSecspTrack);
283 head = remainder / numSecspTrack;
284 remainder -= head * numSecspTrack;
290 if (sector < numSecspTrack) {
mbrpart.h 66 static uint32_t numSecspTrack;
basicmbr.cc 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;
    [all...]
basicmbr.h 56 uint32_t numSecspTrack; // number of sectors per track, in CHS scheme

Completed in 158 milliseconds