Home
last modified time | relevance | path

Searched refs:sizeInIeee (Results 1 – 2 of 2) sorted by relevance

/external/gptfdisk/
Dsupport.cc225 uint64_t sizeInIeee; in BytesToIeee() local
232 sizeInIeee = previousIeee = size * (uint64_t) sectorSize; in BytesToIeee()
233 while ((sizeInIeee > 1024) && (index < (prefixes.length() - 1))) { in BytesToIeee()
235 previousIeee = sizeInIeee; in BytesToIeee()
236 sizeInIeee /= 1024; in BytesToIeee()
239 theValue << sizeInIeee << " bytes"; in BytesToIeee()
244 ((float) sizeInIeee * 1024.0) + 51.2) / 102.4; in BytesToIeee()
247 sizeInIeee++; in BytesToIeee()
249 theValue << sizeInIeee << "." << (uint32_t) decimalIeee << units; in BytesToIeee()
Dgptpart.cc292 string sizeInIeee; local
297 sizeInIeee = BytesToIeee(lastLBA - firstLBA + 1, blockSize);
305 cout << sizeInIeee << " ";
306 if (sizeInIeee.length() < 10)
307 for (i = 0; i < 10 - sizeInIeee.length(); i++)