Home | History | Annotate | Download | only in gptfdisk

Lines Matching refs:firstBlock

1057    uint64_t firstBlock; // first block in a segment
1066 firstBlock = FindFirstAvailable(start);
1067 if (firstBlock > UINT64_C(0)) { // something's free...
1068 lastBlock = FindLastInFree(firstBlock);
1069 segmentSize = lastBlock - firstBlock + UINT64_C(1);
1072 selectedSegment = firstBlock;
1076 } while (firstBlock != 0);