Searched refs:sectorAlignment (Results 1 - 7 of 7) sorted by relevance
/third_party/gptfdisk/ |
H A D | gpt.cc | 81 sectorAlignment = MIN_AF_ALIGNMENT; // Align partitions on 4096-byte boundaries by default in GPTData() 113 sectorAlignment = orig.sectorAlignment; in GPTData() 146 sectorAlignment = MIN_AF_ALIGNMENT; // Align partitions on 4096-byte boundaries by default in GPTData() 184 sectorAlignment = orig.sectorAlignment; in operator =() 217 uint32_t i, numSegments, testAlignment = sectorAlignment; in Verify() 415 testAlignment = max(testAlignment, sectorAlignment); in Verify() 417 testAlignment = sectorAlignment; in Verify() 1606 cout << "Partitions will be aligned on " << sectorAlignment << " in DisplayGPTData() local 1985 << startSector << " in\\norder to align on " << sectorAlignment CreatePartition() local [all...] |
H A D | gpt.h | 81 uint32_t sectorAlignment; // Start partitions at multiples of sectorAlignment member in GPTData 197 uint32_t GetAlignment(void) {return sectorAlignment;} in GetAlignment()
|
H A D | support.cc | 139 uint64_t IeeeToInt(string inValue, uint64_t sSize, uint64_t low, uint64_t high, uint32_t sectorAlignment, uint64_t def) { in IeeeToInt() argument 202 // sectorAlignment sectors of high, which should be the case when in IeeeToInt() 206 if ((high - def) < sectorAlignment) { in IeeeToInt()
|
H A D | support.h | 75 uint64_t IeeeToInt(std::string IeeeValue, uint64_t sSize, uint64_t low, uint64_t high, uint32_t sectorAlignment, uint64_t def = 0);
|
H A D | gptcl.cc | 328 startSector = IeeeToInt(GetString(newPartInfo, 2), sSize, low, high, sectorAlignment, low); in DoOptions() 329 endSector = IeeeToInt(GetString(newPartInfo, 3), sSize, startSector, high, sectorAlignment, high); in DoOptions()
|
H A D | gpttext.cc | 259 << sector << " in\norder to align on " << sectorAlignment in CreatePartition() local 590 response = IeeeToInt(line, blockSize, low, high, sectorAlignment, def); in GetSectorNum()
|
H A D | gptcurses.cc | 455 newFirstLBA = IeeeToInt(inLine, blockSize, currentSpace->firstLBA, currentSpace->lastLBA, sectorAlignment, newFirstLBA); in MakeNewPart() 469 newLastLBA = newFirstLBA + IeeeToInt(inLine, blockSize, 1, size, sectorAlignment, size) - 1; in MakeNewPart()
|
Completed in 9 milliseconds