Lines Matching defs:size
325 uint64_t size;
340 size = partitions[partNum].GetLastLBA() - partitions[partNum].GetFirstLBA() + 1;
341 printw("Partition size: %llu sectors (%s)\n", (long long unsigned int) size, BytesToIeee(size, blockSize).c_str());
433 uint64_t size, newFirstLBA = 0, newLastLBA = 0, lastAligned;
459 size = currentSpace->lastLBA - newFirstLBA + 1;
461 size = lastAligned - newFirstLBA + 1;
465 printw("Size in sectors or {KMGTP} (default = %llu): ", (long long unsigned int) size);
469 newLastLBA = newFirstLBA + IeeeToInt(inLine, blockSize, 1, size, sectorAlignment, size) - 1;
755 ostringstream size;
757 size << "Size: " << diskSize << ", " << BytesToIeee(diskSize, blockSize);
764 move(3, (COLS - size.str().length()) / 2);
765 printw("%s", size.str().c_str());