Home | History | Annotate | Download | only in gptfdisk

Lines Matching defs:firstLBA

37    firstLBA = 0;
70 if (firstLBA <= lastLBA)
71 length = lastLBA - firstLBA + UINT64_C(1);
148 if ((firstLBA > UINT32_MAX) || ((lastLBA - firstLBA) > UINT32_MAX) || (firstLBA > lastLBA))
273 firstLBA = orig.firstLBA;
281 // Because this is intended for sorting and a firstLBA value of 0 denotes
284 // firstLBA value is 0.
286 if (firstLBA && other.firstLBA)
287 return (firstLBA < other.firstLBA);
289 return (other.firstLBA < firstLBA);
298 if (firstLBA != 0) {
299 sizeInIeee = BytesToIeee(lastLBA - firstLBA + 1, blockSize);
304 cout << firstLBA << " ";
364 // empty (as determined by firstLBA being 0).
368 if (firstLBA != 0) {
373 cout << "First sector: " << firstLBA << " (at "
374 << BytesToIeee(firstLBA, blockSize) << ")\n";
377 size = (lastLBA - firstLBA + 1);
395 firstLBA = 0;
405 return firstLBA && other.firstLBA &&
406 (firstLBA <= other.lastLBA) != (lastLBA < other.firstLBA);
414 ReverseBytes(&firstLBA, 8);