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

  /external/gptfdisk/
bsd.h 46 // Create entries for all fields, although we only use lengthLBA, firstLBA,
50 uint32_t firstLBA; // starting sector
gptpart.h 50 uint64_t firstLBA;
64 uint64_t GetFirstLBA(void) const {return firstLBA;}
78 void SetFirstLBA(uint64_t f) {firstLBA = f;}
gptcurses.h 68 uint64_t firstLBA;
92 void AddEmptySpace(uint64_t firstLBA, uint64_t lastLBA);
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...]
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;}
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...]
  /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 186 milliseconds