HomeSort by relevance Sort by last modified time
    Searched refs:firstLBA (Results 1 - 10 of 10) sorted by null

  /external/gptfdisk/
mbrpart.cc 48 firstLBA = 0;
80 firstLBA = orig.firstLBA;
98 firstLBA = orig.firstLBA;
114 return (firstLBA < other.firstLBA);
116 return (other.firstLBA < firstLBA);
143 firstLBA = UINT32_C(0)
    [all...]
gptpart.cc 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
    [all...]
gptpart.h 50 uint64_t firstLBA;
64 uint64_t GetFirstLBA(void) const {return firstLBA;}
78 void SetFirstLBA(uint64_t f) {firstLBA = f;}
mbrpart.h 40 // On read or write of MBR entries, firstLBA is an absolute disk sector.
50 uint32_t firstLBA; // see above
60 uint32_t firstLBA; // see above
95 uint64_t GetStartLBA(void) {return firstLBA;}
bsd.cc 148 partitions[i].firstLBA = tempRecords[i].firstLBA;
152 ReverseBytes(&partitions[i].firstLBA, 4);
159 if ((partitions[i].firstLBA == 0) && (partitions[i].lengthLBA > 0)
168 partitions[i].firstLBA += (uint32_t) startSector;
194 cout << partitions[i].firstLBA << "\t";
247 retval = (uint64_t) partitions[i].firstLBA;
275 sectorOne = (uint64_t) partitions[i].firstLBA;
gptcurses.h 68 uint64_t firstLBA;
92 void AddEmptySpace(uint64_t firstLBA, uint64_t lastLBA);
gptcurses.cc 95 tempSpace->firstLBA = partitions[i].GetFirstLBA();
106 void GPTDataCurses::AddEmptySpace(uint64_t firstLBA, uint64_t lastLBA) {
110 tempSpace->firstLBA = firstLBA;
131 if ((current == firstSpace) && (current->firstLBA > GetFirstUsableLBA())) {
132 AddEmptySpace(GetFirstUsableLBA(), current->firstLBA - 1);
139 if ((current->prevSpace != NULL) && (current->prevSpace->lastLBA < (current->firstLBA - 1))) {
140 AddEmptySpace(current->prevSpace->lastLBA + 1, current->firstLBA - 1);
192 if (current->firstLBA < earliest->firstLBA)
    [all...]
bsd.h 46 // Create entries for all fields, although we only use lengthLBA, firstLBA,
50 uint32_t firstLBA; // starting sector
basicmbr.cc 277 ReverseBytes(&ebr.partitions[0].firstLBA, 4);
279 ReverseBytes(&ebr.partitions[1].firstLBA, 4);
302 offset = extendedStart + ebr.partitions[0].firstLBA;
307 partitions[partNum].SetStartLBA(ebr.partitions[0].firstLBA + offset);
311 if ((ebr.partitions[1].firstLBA != UINT32_C(0)) && (partNum < (MAX_MBR_PARTS - 1))) {
312 offset = extendedStart + ebr.partitions[1].firstLBA;
369 tempMBR.partitions[i].firstLBA = tempMBR.partitions[i].lengthLBA = 0;
382 tempMBR.partitions[0].firstLBA = 1;
387 tempMBR.partitions[1].firstLBA = (uint32_t) (partitions[next].GetStartLBA() - extFirstLBA - 1);
389 LBAtoCHS((uint64_t) tempMBR.partitions[1].firstLBA,
    [all...]
  /external/syslinux/utils/
isohybrid.c 186 uint64_t firstLBA;
853 part->firstLBA = lendian_64(0);
862 part->firstLBA = lendian_64(efi_lba * 4);
863 part->lastLBA = lendian_64(part->firstLBA + efi_count - 1);
875 part->firstLBA = lendian_64(mac_lba * 4);
876 part->lastLBA = lendian_64(part->firstLBA + mac_count - 1);

Completed in 562 milliseconds