Searched defs:firstLBA (Results 1 - 7 of 7) sorted by relevance

/external/gptfdisk/
H A Dbsd.h46 // Create entries for all fields, although we only use lengthLBA, firstLBA,
50 uint32_t firstLBA; // starting sector member in struct:BSDRecord
H A Dgptcurses.h68 uint64_t firstLBA; member in struct:Space
92 void AddEmptySpace(uint64_t firstLBA, uint64_t lastLBA);
H A Dgptpart.h50 uint64_t firstLBA; member in class:GPTPart
64 uint64_t GetFirstLBA(void) const {return firstLBA;}
78 void SetFirstLBA(uint64_t f) {firstLBA = f;}
H A Dmbrpart.h40 // On read or write of MBR entries, firstLBA is an absolute disk sector.
50 uint32_t firstLBA; // see above member in struct:MBRRecord
60 uint32_t firstLBA; // see above member in class:MBRPart
95 uint64_t GetStartLBA(void) {return firstLBA;}
H A Dgptpart.cc35 firstLBA = 0;
68 if (firstLBA <= lastLBA)
69 length = lastLBA - firstLBA + UINT64_C(1);
146 if ((firstLBA > UINT32_MAX) || ((lastLBA - firstLBA) > UINT32_MAX) || (firstLBA > lastLBA))
271 firstLBA = orig.firstLBA;
279 // Because this is intended for sorting and a firstLBA value of 0 denotes
282 // firstLBA valu
302 cout << firstLBA << " "; local
[all...]
H A Dmbrpart.cc46 firstLBA = 0;
78 firstLBA = orig.firstLBA;
96 firstLBA = orig.firstLBA;
112 return (firstLBA < other.firstLBA);
114 return (other.firstLBA < firstLBA);
141 firstLBA
327 cout << firstLBA; local
[all...]
H A Dgptcurses.cc95 tempSpace->firstLBA = partitions[i].GetFirstLBA();
106 void GPTDataCurses::AddEmptySpace(uint64_t firstLBA, uint64_t lastLBA) { argument
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...]

Completed in 121 milliseconds