Lines Matching defs:firstLBA
36 firstLBA = 0;
45 firstLBA = orig.firstLBA;
78 if (firstLBA <= lastLBA)
79 length = lastLBA - firstLBA + UINT64_C(1);
155 if ((firstLBA > UINT32_MAX) || ((lastLBA - firstLBA) > UINT32_MAX) || (firstLBA > lastLBA))
277 firstLBA = orig.firstLBA;
285 // Because this is intended for sorting and a firstLBA value of 0 denotes
288 // firstLBA value is 0.
290 if (firstLBA && other.firstLBA)
291 return (firstLBA < other.firstLBA);
293 return (other.firstLBA < firstLBA);
302 if (firstLBA != 0) {
303 sizeInIeee = BytesToIeee(lastLBA - firstLBA + 1, blockSize);
308 cout << firstLBA << " ";
368 // empty (as determined by firstLBA being 0).
372 if (firstLBA != 0) {
377 cout << "First sector: " << firstLBA << " (at "
378 << BytesToIeee(firstLBA, blockSize) << ")\n";
381 size = (lastLBA - firstLBA + 1);
399 firstLBA = 0;
409 return firstLBA && other.firstLBA &&
410 (firstLBA <= other.lastLBA) != (lastLBA < other.firstLBA);
416 ReverseBytes(&firstLBA, 8);