reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/DebugInfo/CodeView/CVRecord.h
  124     Len = ExpectedRec->length();
include/llvm/DebugInfo/PDB/Native/TpiStreamBuilder.h
   29   static size_t length(const codeview::CVType &Item) { return Item.length(); }
include/llvm/Support/BinaryStreamArray.h
  141   void drop_front() { Skew += begin()->length(); }
lib/DebugInfo/CodeView/CVSymbolVisitor.cpp
   79     InitialOffset += I.length();
lib/DebugInfo/CodeView/DebugSymbolsSubsection.cpp
   32   Length += Symbol.length();
lib/DebugInfo/CodeView/SymbolDumper.cpp
  649   W.printNumber("Length", CVR.length());
lib/DebugInfo/CodeView/TypeRecordMapping.cpp
  203     uint16_t RecordLen = CVR.length() - 2;
lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp
   90     Size += Sym.length();
  147     SymOffset += Sym.length();
  263     SymOffset += Sym.length();
lib/ObjectYAML/CodeViewYAMLTypes.cpp
  803     Size += T.length();
  804     assert(T.length() % 4 == 0 && "Improper type record alignment!");
tools/lld/COFF/InputFiles.cpp
  733       offset += sym->length();
tools/lld/COFF/PDB.cpp
  701   size_t size = alignTo(sym.length(), alignOf(CodeViewContainer::Pdb));
  709   memcpy(newData.data(), sym.data().data(), sym.length());
  710   memset(newData.data() + sym.length(), 0, size - sym.length());
  710   memset(newData.data() + sym.length(), 0, size - sym.length());
  838             alignTo(sym.length(), alignOf(CodeViewContainer::Pdb));
  839         needsRealignment |= realignedSize != sym.length();
  877               const_cast<uint8_t *>(sym.data().data()), sym.length());
  924                                        bulkSymbols.size() + sym.length());
  929           curSymOffset += sym.length();
tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbUtil.cpp
  633           func_scope_id.modi, func_scope_id.offset + func_block_cvs.length());
tools/llvm-pdbutil/BytesOutputStyle.cpp
  317     auto OneType = Substream.slice(Offset, Type.length());
tools/llvm-pdbutil/DumpOutputStyle.cpp
  278       Stats.update(S.kind(), S.length());
  279       CumulativeStats.update(S.kind(), S.length());
  293       Stats.update(S.kind(), S.length());
  294       CumulativeStats.update(S.kind(), S.length());
  707     TypeStats.update(uint32_t(Type.kind()), Type.length());
  790     UdtStats.update(SymbolKind::S_UDT, Sym.length());
  803       RecordSize = T->length();
 1624     TotalBytes += Type.length();
 1627       RefBytes += Type.length();
tools/llvm-pdbutil/MinimalSymbolDumper.cpp
  352                formatSymbolKind(Record.kind()), Record.length());
tools/llvm-pdbutil/MinimalTypeDumper.cpp
  227                formatTypeLeafKind(Record.kind()), Record.length());
unittests/DebugInfo/CodeView/RandomAccessVisitorTest.cpp
   57   static size_t length(const CVType &Item) { return Item.length(); }
  113       Offset += Type.length();