OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IeeeToInt
(Results
1 - 4
of
4
) sorted by null
/external/gptfdisk/
support.h
78
uint64_t
IeeeToInt
(string IeeeValue, uint64_t sSize, uint64_t low, uint64_t high, uint64_t def = 0);
support.cc
110
response =
IeeeToInt
(line, sSize, low, high, def);
129
// 0 values. The result is that
IeeeToInt
() returns UINT64_MAX when
132
uint64_t
IeeeToInt
(string inValue, uint64_t sSize, uint64_t low, uint64_t high, uint64_t def) {
141
cerr << "Bug: Sector size invalid in
IeeeToInt
()!\n";
215
} //
IeeeToInt
()
gptcl.cc
291
startSector =
IeeeToInt
(GetString(newPartInfo, 2), sSize, low, high, low);
292
endSector =
IeeeToInt
(GetString(newPartInfo, 3), sSize, startSector, high, high);
gptcurses.cc
443
newFirstLBA =
IeeeToInt
(inLine, blockSize, currentSpace->firstLBA, currentSpace->lastLBA, newFirstLBA);
454
newLastLBA = newFirstLBA +
IeeeToInt
(inLine, blockSize, 1, size, size) - 1;
Completed in 117 milliseconds