Home
last modified time | relevance | path

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

/third_party/gptfdisk/
Dsupport.cc231 uint64_t sizeInIeee; in BytesToIeee() local
238 sizeInIeee = previousIeee = size * (uint64_t) sectorSize; in BytesToIeee()
239 while ((sizeInIeee > 1024) && (index < (prefixes.length() - 1))) { in BytesToIeee()
241 previousIeee = sizeInIeee; in BytesToIeee()
242 sizeInIeee /= 1024; in BytesToIeee()
245 theValue << sizeInIeee << " bytes"; in BytesToIeee()
250 ((float) sizeInIeee * 1024.0) + 51.2) / 102.4; in BytesToIeee()
253 sizeInIeee++; in BytesToIeee()
255 theValue << sizeInIeee << "." << (uint32_t) decimalIeee << units; in BytesToIeee()
Dgptpart.cc298 string sizeInIeee; local
303 sizeInIeee = BytesToIeee(lastLBA - firstLBA + 1, blockSize);
311 cout << sizeInIeee << " ";
312 if (sizeInIeee.length() < 10)
313 for (i = 0; i < 10 - sizeInIeee.length(); i++)