Home
last modified time | relevance | path

Searched refs:TotalLength (Results 1 – 8 of 8) sorted by relevance

/external/llvm/lib/DebugInfo/
DDWARFDebugLine.h41 uint32_t TotalLength; member
68 return PrologueLength + sizeof(TotalLength) + sizeof(Version) + in getLength()
73 return TotalLength + sizeof(TotalLength) - getLength(); in getStatementTableLength()
DDWARFDebugLine.cpp25 TotalLength = Version = PrologueLength = 0; in clear()
35 << format(" total_length: 0x%8.8x\n", TotalLength) in dump()
73 TotalLength = debug_line_data.getU32(offset_ptr); in parse()
260 const uint32_t end_offset = debug_line_offset + Prologue.TotalLength + in parse()
261 sizeof(Prologue.TotalLength); in parse()
/external/clang/lib/Format/
DFormatToken.cpp125 assert(End->TotalLength >= Begin->TotalLength); in CodePointsBetween()
126 return End->TotalLength - Begin->TotalLength + Begin->ColumnWidth; in CodePointsBetween()
DFormatToken.h108 PackingKind(PPK_Inconclusive), TotalLength(0), UnbreakableTailLength(0), in FormatToken()
209 unsigned TotalLength; member
DFormat.cpp587 Limit = TheLine->Last->TotalLength > Limit in tryFitMultipleLinesInOne()
589 : Limit - TheLine->Last->TotalLength; in tryFitMultipleLinesInOne()
655 if (1 + I[1]->Last->TotalLength > Limit) in tryMergeSimplePPDirective()
676 if (1 + I[1]->Last->TotalLength > Limit) in tryMergeSimpleControlStatement()
777 return 1 + I[1]->Last->TotalLength + 1 + I[2]->Last->TotalLength <= Limit; in nextTwoLinesFitInto()
880 if (TheLine.Last->TotalLength + Indent <= ColumnLimit) { in format()
1047 unsigned LengthA = A.Last->TotalLength + B.First->SpacesRequiredBefore; in join()
1049 Tok->TotalLength += LengthA; in join()
1236 Previous.Children[0]->Last->TotalLength + State.Column + 2 > in formatChildren()
1248 State.Column += 1 + Previous.Children[0]->Last->TotalLength; in formatChildren()
DTokenAnnotator.cpp1246 Line.First->TotalLength = in calculateFormattingInformation()
1296 : LastOfChild.TotalLength + 1; in calculateFormattingInformation()
1300 Current->TotalLength = Current->Previous->TotalLength + Style.ColumnLimit; in calculateFormattingInformation()
1302 Current->TotalLength = Current->Previous->TotalLength + in calculateFormattingInformation()
1825 << " L=" << Tok->TotalLength << " PPK=" << Tok->PackingKind in printDebugInfo()
DContinuationIndenter.cpp38 return End->TotalLength - Tok.TotalLength + 1; in getLengthToMatchingParen()
/external/llvm/lib/MC/
DMCAssembler.cpp648 unsigned TotalLength = BundlePadding + static_cast<unsigned>(FragmentSize); in writeFragment() local
649 if (F.alignToBundleEnd() && TotalLength > Asm.getBundleAlignSize()) { in writeFragment()
658 unsigned DistanceToBoundary = TotalLength - Asm.getBundleAlignSize(); in writeFragment()