Searched refs:IeeeToInt (Results 1 - 5 of 5) sorted by relevance
/third_party/gptfdisk/ |
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 | support.cc | 136 // 0 values. The result is that IeeeToInt() returns UINT64_MAX when 139 uint64_t IeeeToInt(string inValue, uint64_t sSize, uint64_t low, uint64_t high, uint32_t sectorAlignment, uint64_t def) { in IeeeToInt() function 148 cerr << "Bug: Sector size invalid in IeeeToInt()!\n"; in IeeeToInt() 230 } // IeeeToInt() in IeeeToInt()
|
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()
|
H A D | gpttext.cc | 590 response = IeeeToInt(line, blockSize, low, high, sectorAlignment, def); in GetSectorNum()
|
Completed in 5 milliseconds