Searched refs:firstBlock (Results 1 – 7 of 7) sorted by relevance
/external/gptfdisk/ |
D | gpttext.cc | 184 uint64_t firstBlock, firstInLargest, lastBlock, sector, origSector; in CreatePartition() local 194 if (((firstBlock = FindFirstAvailable()) != 0) && in CreatePartition() 211 prompt2 << "First sector (" << firstBlock << "-" << lastBlock << ", default = " in CreatePartition() 214 sector = GetSectorNum(firstBlock, lastBlock, firstInLargest, blockSize, prompt2.str()); in CreatePartition() 225 firstBlock = sector; in CreatePartition() 228 lastBlock = FindLastInFree(firstBlock); in CreatePartition() 229 prompt3 << "Last sector (" << firstBlock << "-" << lastBlock << ", default = " in CreatePartition() 232 sector = GetSectorNum(firstBlock, lastBlock, lastBlock, blockSize, prompt3.str()); in CreatePartition() 236 firstFreePart = GPTData::CreatePartition(partNum, firstBlock, lastBlock); in CreatePartition()
|
D | gpt.cc | 2132 uint64_t start, firstBlock, lastBlock, segmentSize, selectedSize = 0, selectedSegment = 0; in FindFirstInLargest() local 2136 firstBlock = FindFirstAvailable(start); in FindFirstInLargest() 2137 if (firstBlock != UINT32_C(0)) { // something's free... in FindFirstInLargest() 2138 lastBlock = FindLastInFree(firstBlock); in FindFirstInLargest() 2139 segmentSize = lastBlock - firstBlock + UINT32_C(1); in FindFirstInLargest() 2142 selectedSegment = firstBlock; in FindFirstInLargest() 2146 } while (firstBlock != 0); in FindFirstInLargest() 2199 uint64_t firstBlock; // first block in a segment in FindFreeBlocks() local 2207 firstBlock = FindFirstAvailable(start); in FindFreeBlocks() 2208 if (firstBlock != UINT64_C(0)) { // something's free... in FindFreeBlocks() [all …]
|
D | basicmbr.cc | 1059 uint64_t firstBlock; // first block in a segment in MakeBiggestPart() local 1068 firstBlock = FindFirstAvailable(start); in MakeBiggestPart() 1069 if (firstBlock > UINT64_C(0)) { // something's free... in MakeBiggestPart() 1070 lastBlock = FindLastInFree(firstBlock); in MakeBiggestPart() 1071 segmentSize = lastBlock - firstBlock + UINT64_C(1); in MakeBiggestPart() 1074 selectedSegment = firstBlock; in MakeBiggestPart() 1078 } while (firstBlock != 0); in MakeBiggestPart()
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/data/ |
D | ExecutionDataReader.java | 33 private boolean firstBlock = true; field in ExecutionDataReader 88 if (firstBlock && type != ExecutionDataWriter.BLOCK_HEADER) { in read() 91 firstBlock = false; in read()
|
/external/tpm2/ |
D | SequenceUpdate.c | 54 if(hashObject->attributes.firstBlock == CLEAR) in TPM2_SequenceUpdate() 57 hashObject->attributes.firstBlock = SET; in TPM2_SequenceUpdate()
|
D | SequenceComplete.c | 56 if(hashObject->attributes.firstBlock == CLEAR) in TPM2_SequenceComplete()
|
D | Global.h | 155 unsigned firstBlock : 1; //12) SET if the first block of hash member
|