Home | History | Annotate | Download | only in gptfdisk

Lines Matching defs:firstBlock

1059    uint64_t firstBlock; // first block in a segment
1068 firstBlock = FindFirstAvailable(start);
1069 if (firstBlock > UINT64_C(0)) { // something's free...
1070 lastBlock = FindLastInFree(firstBlock);
1071 segmentSize = lastBlock - firstBlock + UINT64_C(1);
1074 selectedSegment = firstBlock;
1078 } while (firstBlock != 0);