Home | History | Annotate | Download | only in gptfdisk

Lines Matching defs:startSector

66    uint64_t low, high, startSector, endSector, sSize;
295 startSector = IeeeToInt(GetString(newPartInfo, 2), sSize, low, high, low);
296 endSector = IeeeToInt(GetString(newPartInfo, 3), sSize, startSector, high, high);
297 if (CreatePartition(newPartNum, startSector, endSector)) {
301 << startSector << " to " << endSector << "\n";
308 startSector = FindFirstInLargest();
309 Align(&startSector);
310 endSector = FindLastInFree(startSector);
313 if (CreatePartition(largestPartNum - 1, startSector, endSector)) {
317 << startSector << " to " << endSector << "\n";