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

References

include/llvm/ObjectYAML/DWARFYAML.h
   31   bool isDWARF64() const { return TotalLength == UINT32_MAX; }
   34     return isDWARF64() ? TotalLength64 : TotalLength;
   40       TotalLength = UINT32_MAX;
   42       TotalLength = Len;
lib/ObjectYAML/DWARFEmitter.cpp
   66   writeInteger((uint32_t)Length.TotalLength, OS, IsLittleEndian);
lib/ObjectYAML/DWARFYAML.cpp
  168   IO.mapRequired("TotalLength", InitialLength.TotalLength);
tools/obj2yaml/dwarf2yaml.cpp
   21   InitialLength.TotalLength = Data.getU32(&Offset);