Home
last modified time | relevance | path

Searched refs:IeeeToInt (Results 1 – 4 of 4) sorted by relevance

/external/gptfdisk/
Dsupport.cc112 response = IeeeToInt(line, sSize, low, high, def); in GetSectorNum()
134 uint64_t IeeeToInt(string inValue, uint64_t sSize, uint64_t low, uint64_t high, uint64_t def) { in IeeeToInt() function
Dsupport.h78 uint64_t IeeeToInt(string IeeeValue, uint64_t sSize, uint64_t low, uint64_t high, uint64_t def = 0);
Dgptcl.cc295 startSector = IeeeToInt(GetString(newPartInfo, 2), sSize, low, high, low); in DoOptions()
296 endSector = IeeeToInt(GetString(newPartInfo, 3), sSize, startSector, high, high); in DoOptions()
Dgptcurses.cc443 …newFirstLBA = IeeeToInt(inLine, blockSize, currentSpace->firstLBA, currentSpace->lastLBA, newFirst… in MakeNewPart()
454 newLastLBA = newFirstLBA + IeeeToInt(inLine, blockSize, 1, size, size) - 1; in MakeNewPart()