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

  /external/gptfdisk/
basicmbr.h 56 uint32_t numSecspTrack; // number of sectors per track, in CHS scheme
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;

Completed in 392 milliseconds