Lines Matching defs:firstLBA
100 tempSpace->firstLBA = partitions[i].GetFirstLBA();
111 void GPTDataCurses::AddEmptySpace(uint64_t firstLBA, uint64_t lastLBA) {
115 tempSpace->firstLBA = firstLBA;
136 if ((current == firstSpace) && (current->firstLBA > GetFirstUsableLBA())) {
137 AddEmptySpace(GetFirstUsableLBA(), current->firstLBA - 1);
144 if ((current->prevSpace != NULL) && (current->prevSpace->lastLBA < (current->firstLBA - 1))) {
145 AddEmptySpace(current->prevSpace->lastLBA + 1, current->firstLBA - 1);
197 if (current->firstLBA < earliest->firstLBA)
242 printw("%s", BytesToIeee((space->lastLBA - space->firstLBA + 1), blockSize).c_str());
249 printw("%s", BytesToIeee((space->lastLBA - space->firstLBA + 1), blockSize).c_str());
445 while ((newFirstLBA < currentSpace->firstLBA) || (newFirstLBA > currentSpace->lastLBA)) {
448 newFirstLBA = currentSpace->firstLBA;
455 newFirstLBA = IeeeToInt(inLine, blockSize, currentSpace->firstLBA, currentSpace->lastLBA, sectorAlignment, newFirstLBA);