Lines Matching refs:endSector
1780 uint32_t GPTData::CreatePartition(uint32_t partNum, uint64_t startSector, uint64_t endSector) {
1790 if (IsFree(startSector) && (startSector <= endSector)) {
1791 if (FindLastInFree(startSector) >= endSector) {
1793 partitions[partNum].SetLastLBA(endSector);
1796 } else retval = 0; // if free space until endSector
1800 } // GPTData::CreatePartition(partNum, startSector, endSector)