OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lastLBA
(Results
1 - 4
of
4
) sorted by null
/external/gptfdisk/
gptpart.cc
36
lastLBA
= 0;
68
if (firstLBA <=
lastLBA
)
69
length =
lastLBA
- firstLBA + UINT64_C(1);
146
if ((firstLBA > UINT32_MAX) || ((
lastLBA
- firstLBA) > UINT32_MAX) || (firstLBA >
lastLBA
))
148
else if (
lastLBA
> UINT32_MAX)
272
lastLBA
= orig.
lastLBA
;
297
sizeInIeee = BytesToIeee(
lastLBA
- firstLBA + 1, blockSize);
304
cout <<
lastLBA
<< " ";
[
all
...]
gptpart.h
51
uint64_t
lastLBA
;
65
uint64_t GetLastLBA(void) const {return
lastLBA
;}
79
void SetLastLBA(uint64_t l) {
lastLBA
= l;}
gptcurses.h
69
uint64_t
lastLBA
;
92
void AddEmptySpace(uint64_t firstLBA, uint64_t
lastLBA
);
gptcurses.cc
96
tempSpace->
lastLBA
= partitions[i].GetLastLBA();
106
void GPTDataCurses::AddEmptySpace(uint64_t firstLBA, uint64_t
lastLBA
) {
111
tempSpace->
lastLBA
=
lastLBA
;
135
if ((current == lastSpace) && (current->
lastLBA
< GetLastUsableLBA())) {
136
AddEmptySpace(current->
lastLBA
+ 1, GetLastUsableLBA());
139
if ((current->prevSpace != NULL) && (current->prevSpace->
lastLBA
< (current->firstLBA - 1))) {
140
AddEmptySpace(current->prevSpace->
lastLBA
+ 1, current->firstLBA - 1);
237
printw(BytesToIeee((space->
lastLBA
- space->firstLBA + 1), blockSize).c_str());
244
printw(BytesToIeee((space->
lastLBA
- space->firstLBA + 1), blockSize).c_str())
[
all
...]
Completed in 2754 milliseconds