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

/external/gptfdisk/
H A Dgpt.cc1645 int GPTData::OnePartToMBR(uint32_t gptPart, int mbrPart) { argument
1652 if (gptPart >= numParts) {
1653 cout << "GPT partition " << gptPart + 1 << " is out of range; omitting it.\n"; local
1656 if (allOK && (partitions[gptPart].GetLastLBA() == UINT64_C(0))) {
1657 cout << "GPT partition " << gptPart + 1 << " is undefined; omitting it.\n"; local
1660 if (allOK && (partitions[gptPart].GetFirstLBA() <= UINT32_MAX) &&
1661 (partitions[gptPart].GetLengthLBA() <= UINT32_MAX)) {
1662 if (partitions[gptPart].GetLastLBA() > UINT32_MAX) {
1666 protectiveMBR.MakePart(mbrPart, (uint32_t) partitions[gptPart].GetFirstLBA(),
1667 (uint32_t) partitions[gptPart]
1671 cout << "Partition " << gptPart + 1 << " begins beyond the 32-bit pointer limit of MBR " local
[all...]

Completed in 137 milliseconds